mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-22 19:55:56 +02:00
Style header type and ID values
This commit is contained in:
parent
2ebde880af
commit
11ae07a91d
2 changed files with 20 additions and 12 deletions
|
@ -329,7 +329,6 @@ input[type=checkbox]:checked + label:hover {
|
|||
-moz-user-select: text;
|
||||
-ms-user-select: text;
|
||||
user-select: text;
|
||||
|
||||
cursor: text;
|
||||
}
|
||||
|
||||
|
@ -414,6 +413,20 @@ input[type=checkbox]:checked + label:hover {
|
|||
font-size: 14px;
|
||||
}
|
||||
|
||||
.value {
|
||||
display: block;
|
||||
min-height: 18px;
|
||||
}
|
||||
.value label {
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
width: 48px;
|
||||
}
|
||||
.value span {
|
||||
font-family: FiraSans-SemiBold;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.checkbox + .checkbox {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
|
|
@ -1161,18 +1161,13 @@
|
|||
|
||||
<body onload='loaded();'>
|
||||
<div id="properties-list">
|
||||
<div id="type" class="property">
|
||||
<div class="label">
|
||||
<label>Type: </label><span id="property-type"></span>
|
||||
</div>
|
||||
<div id="type" class="property value">
|
||||
<label>Type:</label>
|
||||
<span id="property-type"></span>
|
||||
</div>
|
||||
<div id="id" class="property">
|
||||
<span class="label" style="float: left; margin-right: 6px">
|
||||
<label>ID: </label>
|
||||
</span>
|
||||
<div class="value">
|
||||
<span id="property-id" class="selectable"></span>
|
||||
</div>
|
||||
<div id="id" class="property value">
|
||||
<label>ID:</label>
|
||||
<span id="property-id" class="selectable"></span>
|
||||
</div>
|
||||
<div class="property text">
|
||||
<label for="property-name">Name</label>
|
||||
|
|
Loading…
Reference in a new issue