fixed stream-mouse-buttons

This commit is contained in:
Devaev Maxim 2018-12-15 19:24:07 +03:00
parent 0d0fdd9b71
commit 9750833dd9
3 changed files with 7 additions and 4 deletions

View File

@ -284,7 +284,7 @@
<div id="stream-box" class="stream-box-inactive"> <div id="stream-box" class="stream-box-inactive">
<img id="stream-image" class="stream-image-inactive" src="../share/png/blank-stream.png" /> <img id="stream-image" class="stream-image-inactive" src="../share/png/blank-stream.png" />
</div> </div>
<div id="stream-mouse-buttons"> <div id="stream-mouse-buttons" class="buttons-row">
<button data-mouse-button="left" class="row50">Left Click</button> <button data-mouse-button="left" class="row50">Left Click</button>
<button data-mouse-button="right" class="row50">Right Click</button> <button data-mouse-button="right" class="row50">Right Click</button>
</div> </div>

View File

@ -58,9 +58,6 @@ table#stream-auto-resize-box {
div#stream-mouse-buttons { div#stream-mouse-buttons {
display: none; display: none;
margin: 0;
padding: 0;
font-size: 0;
} }
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

View File

@ -152,8 +152,14 @@ div.buttons-row {
width: 16.66% width: 16.66%
} }
.row50:not(:first-child), .row25:not(:first-child), .row16:not(:first-child) { .row50:not(:first-child), .row25:not(:first-child), .row16:not(:first-child) {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-left: var(--border-control-thin); border-left: var(--border-control-thin);
} }
.row50:not(:last-child), .row25:not(:last-child), .row16:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
ul.footer { ul.footer {
list-style-type: none; list-style-type: none;