diff options
| author | bobzel <zzzman@gmail.com> | 2025-02-25 01:03:25 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2025-02-25 01:03:25 -0500 |
| commit | 515707c4561eb526426b8fa07dd50bd499fb91cc (patch) | |
| tree | f4cbc69387da19add6dbc88acecbcdbdca575039 /src/client/views/nodes/MapBox/MapBox.scss | |
| parent | 30b07ed24fbe5e6d49741bc63031807408cd4a0c (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/MapBox/MapBox.scss')
| -rw-r--r-- | src/client/views/nodes/MapBox/MapBox.scss | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/src/client/views/nodes/MapBox/MapBox.scss b/src/client/views/nodes/MapBox/MapBox.scss index 25b4587a5..fdd8a29d7 100644 --- a/src/client/views/nodes/MapBox/MapBox.scss +++ b/src/client/views/nodes/MapBox/MapBox.scss @@ -1,4 +1,6 @@ -@import '../../global/globalCssVariables.module.scss'; +@use 'sass:color'; +@use '../../global/globalCssVariables.module.scss' as global; + .mapBox { width: 100%; height: 100%; @@ -25,14 +27,6 @@ gap: 5px; align-items: center; width: calc(100% - 40px); - - // .editableText-container { - // width: 100%; - // font-size: 16px !important; - // } - // input { - // width: 100%; - // } } .mapbox-settings-panel { @@ -83,7 +77,7 @@ width: 100%; padding: 10px; &:hover { - background-color: lighten(rgb(187, 187, 187), 10%); + background-color: color.adjust(rgb(187, 187, 187), $lightness: 10%); } } } @@ -167,7 +161,7 @@ pointer-events: all; z-index: 1; // so it appears on top of the document's title, if shown - box-shadow: $standard-box-shadow; + box-shadow: global.$standard-box-shadow; transition: 0.2s; &:hover { |
