simplified

This commit is contained in:
Devaev Maxim
2021-04-21 01:47:14 +03:00
parent 81490428a5
commit 9adc6bc6df
2 changed files with 5 additions and 19 deletions

View File

@@ -37,6 +37,10 @@ div#stream-box {
display: inline-block;
border: var(--border-window-thin);
}
div.stream-box-inactive {
-webkit-filter: grayscale(100%) brightness(75%) sepia(75%);
filter: grayscale(100%) brightness(75%) sepia(75%);
}
div.stream-box-inactive::after {
cursor: wait;
content: "";
@@ -60,16 +64,6 @@ img#stream-image {
background-color: black;
}
img.stream-image-active {
-webkit-filter: none;
filter: none;
}
img.stream-image-inactive {
-webkit-filter: grayscale(100%) brightness(75%) sepia(75%);
filter: grayscale(100%) brightness(75%) sepia(75%);
}
div#stream-mouse-buttons {
display: none;
}