aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/VideoBox.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-02-25 01:03:25 -0500
committerbobzel <zzzman@gmail.com>2025-02-25 01:03:25 -0500
commit515707c4561eb526426b8fa07dd50bd499fb91cc (patch)
treef4cbc69387da19add6dbc88acecbcdbdca575039 /src/client/views/nodes/VideoBox.scss
parent30b07ed24fbe5e6d49741bc63031807408cd4a0c (diff)
added a hideUI option to hide buttons. fixed a mess of runtime warnings mostly related to how scss files can be included in each other
Diffstat (limited to 'src/client/views/nodes/VideoBox.scss')
-rw-r--r--src/client/views/nodes/VideoBox.scss16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/client/views/nodes/VideoBox.scss b/src/client/views/nodes/VideoBox.scss
index 460155446..b5405f0fb 100644
--- a/src/client/views/nodes/VideoBox.scss
+++ b/src/client/views/nodes/VideoBox.scss
@@ -1,4 +1,4 @@
-@import '../global/globalCssVariables.module.scss';
+@use '../global/globalCssVariables.module.scss' as global;
.mini-viewer {
cursor: grab;
@@ -22,7 +22,7 @@
height: 100%;
border-radius: inherit;
opacity: 0.99; // hack! overcomes some kind of Chrome weirdness where buttons (e.g., snapshot) disappear at some point as the video is resized larger
- background: $dark-gray;
+ background: global.$dark-gray;
}
.inkingCanvas-paths-markers {
@@ -93,7 +93,7 @@
align-items: center;
justify-content: center;
display: flex;
- background-color: $dark-gray;
+ background-color: global.$dark-gray;
color: white;
border-radius: 100px;
height: 40px;
@@ -128,13 +128,13 @@
width: 25px;
height: 25px;
border-radius: 50%;
- background: $dark-gray;
+ background: global.$dark-gray;
display: flex;
align-items: center;
justify-content: center;
&:hover {
- background: $black;
+ background: global.$black;
}
svg {
@@ -157,7 +157,7 @@
cursor: pointer;
&:hover {
- background-color: $medium-gray;
+ background-color: global.$medium-gray;
}
}
@@ -198,7 +198,7 @@ input[type='range']::-webkit-slider-runnable-track {
height: 10px;
cursor: pointer;
box-shadow: 0;
- background: $light-gray;
+ background: global.$light-gray;
border-radius: 10px;
}
@@ -208,7 +208,7 @@ input[type='range']::-webkit-slider-thumb {
height: 12px;
width: 12px;
border-radius: 10px;
- background: $medium-blue;
+ background: global.$medium-blue;
cursor: pointer;
-webkit-appearance: none;
margin-top: -1px;