Hide "blank" buttons because they do not have a use case in the current app.

This commit is contained in:
Matt McWilliams 2021-04-01 22:21:27 -04:00
parent 3e528c23a5
commit faad084b2b
3 changed files with 15 additions and 2 deletions

View File

@ -876,6 +876,12 @@ button:focus {
#filmout_stats_monitor { #filmout_stats_monitor {
right: 5px; right: 5px;
} }
.hide {
display: none;
}
.show {
display: block;
}
#screens { #screens {
overflow-x: hidden; overflow-x: hidden;
} }

View File

@ -144,14 +144,14 @@
<i class="fa fa-step-backward"></i> <i class="fa fa-step-backward"></i>
</button> </button>
</div> </div>
<div> <div class="hide">
<button id="cmd_black_forward" onclick="cmd.black_forward();" class="cmd fwd"> <button id="cmd_black_forward" onclick="cmd.black_forward();" class="cmd fwd">
<i class="fa fa-times-circle"></i> <i class="fa fa-times-circle"></i>
BLANK +1 BLANK +1
<i class="fa fa-step-forward"></i> <i class="fa fa-step-forward"></i>
</button> </button>
</div> </div>
<div> <div class="hide">
<button id="cmd_black_backward" onclick="cmd.black_backward();" class="cmd bwd"> <button id="cmd_black_backward" onclick="cmd.black_backward();" class="cmd bwd">
<i class="fa fa-times-circle"></i> <i class="fa fa-times-circle"></i>
BLANK -1 BLANK -1

View File

@ -10,6 +10,13 @@
@import "./mscript.less"; @import "./mscript.less";
@import "./filmout.less"; @import "./filmout.less";
.hide {
display: none;
}
.show {
display: block;
}
#screens{ #screens{
overflow-x: hidden; overflow-x: hidden;
} }