mirror of
https://github.com/overte-org/overte.git
synced 2025-05-31 11:42:34 +02:00
Rearrange animation checkboxes and spinners to be in two columns
This commit is contained in:
parent
e5d65fb159
commit
7d068a31a6
2 changed files with 46 additions and 23 deletions
|
@ -767,6 +767,13 @@ tuple, .blue:focus, .tuple .z:focus, .tuple .roll:focus {
|
|||
display: table-cell;
|
||||
width: 50%;
|
||||
}
|
||||
.column {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.indent {
|
||||
margin-left: 24px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
|
@ -977,3 +984,7 @@ input#dimension-rescale-button {
|
|||
min-width: 50px;
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
#animation-fps {
|
||||
margin-top: 51px;
|
||||
}
|
||||
|
|
|
@ -1537,7 +1537,7 @@
|
|||
</div>
|
||||
|
||||
<div class="behavior-group two-column">
|
||||
<div class="column-1">
|
||||
<div class="column">
|
||||
<div class="sub-section-header">
|
||||
<span>Collides With</span>
|
||||
</div>
|
||||
|
@ -1568,7 +1568,7 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="column-2">
|
||||
<div class="column">
|
||||
<div class="sub-section-header">
|
||||
<span>Grabbing</span>
|
||||
</div>
|
||||
|
@ -1644,28 +1644,40 @@
|
|||
<input type="text" id="property-model-animation-url">
|
||||
<input type="button" class="update-url-version glyph" value="F" />
|
||||
</div>
|
||||
<div class="model-group model-section property checkbox">
|
||||
<input type="checkbox" id="property-model-animation-playing">
|
||||
<label for="property-model-animation-playing">Animation playing</label>
|
||||
</div>
|
||||
<div class="model-group model-section property number">
|
||||
<label>Animation FPS</label>
|
||||
<input type="number" id="property-model-animation-fps">
|
||||
</div>
|
||||
<div class="model-group model-section property number">
|
||||
<div class="tuple">
|
||||
<div><label>Animation frame</label><input type="number" id="property-model-animation-frame"></div>
|
||||
<div><label>First frame</label><input type="number" id="property-model-animation-first-frame"></div>
|
||||
<div><label>Last frame</label><input type="number" id="property-model-animation-last-frame"></div>
|
||||
|
||||
<div class="model-group model-section two-column">
|
||||
<div class="column">
|
||||
<div class="property checkbox">
|
||||
<input type="checkbox" id="property-model-animation-playing">
|
||||
<label for="property-model-animation-playing">Animation playing</label>
|
||||
</div>
|
||||
<div class="property checkbox indent">
|
||||
<input type="checkbox" id="property-model-animation-loop">
|
||||
<label for="property-model-animation-loop">Animation loop</label>
|
||||
</div>
|
||||
<div class="property checkbox indent">
|
||||
<input type="checkbox" id="property-model-animation-hold">
|
||||
<label for="property-model-animation-hold">Animation hold</label>
|
||||
</div>
|
||||
<div id="animation-fps" class="property number">
|
||||
<label>Animation FPS</label>
|
||||
<input type="number" id="property-model-animation-fps">
|
||||
</div>
|
||||
</div>
|
||||
<div class="column">
|
||||
<div class="property number">
|
||||
<label>Animation frame</label>
|
||||
<input type="number" id="property-model-animation-frame">
|
||||
</div>
|
||||
<div class="property number">
|
||||
<label>First frame</label>
|
||||
<input type="number" id="property-model-animation-first-frame">
|
||||
</div>
|
||||
<div class="property number">
|
||||
<label>Last frame</label>
|
||||
<input type="number" id="property-model-animation-last-frame">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="model-group model-section property checkbox">
|
||||
<input type="checkbox" id="property-model-animation-loop">
|
||||
<label for="property-model-animation-loop">Animation loop</label>
|
||||
</div>
|
||||
<div class="model-group model-section property checkbox">
|
||||
<input type="checkbox" id="property-model-animation-hold">
|
||||
<label for="property-model-animation-hold">Animation hold</label>
|
||||
</div>
|
||||
<hr class="model-group model-section" />
|
||||
<div class="model-group model-section property textarea">
|
||||
|
|
Loading…
Reference in a new issue