Make raw item code constrained width wise

This commit is contained in:
2023-10-29 14:07:45 +01:00
parent a2a2781285
commit 973e986f78
2 changed files with 6 additions and 1 deletions

View File

@@ -65,3 +65,8 @@ input[type="checkbox"]:checked + label {
color: rgb(199, 179, 119);
}
.raw-item {
max-width: 120px;
background-color: #444;
color: rgb(240, 240, 240);
}

View File

@@ -11,6 +11,6 @@
<li>{{stat}}</li>
{% endfor %}
{% endif %}
<li>{{item.raw().hex()}}</li>
<li><input class="raw-item" type="text" name="raw item" value="{{item.raw().hex()}}" onfocus="this.select()" readonly></li>
</ul>
</label>