diff options
| author | bobzel <zzzman@gmail.com> | 2020-10-28 14:48:04 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-10-28 14:48:04 -0400 |
| commit | 2b580e4d8acfa1ce8ddb7a323391ccfb90885117 (patch) | |
| tree | 662174517d85c3f6352088e24cc44af077b4e822 /src/client/views/MainView.scss | |
| parent | 22cefba3ccf1cea2dc3362c070547f2233af4f2a (diff) | |
fixed dark scheme mode for menu, properties view, and minimap button.
Diffstat (limited to 'src/client/views/MainView.scss')
| -rw-r--r-- | src/client/views/MainView.scss | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/src/client/views/MainView.scss b/src/client/views/MainView.scss index d571a0428..b49990433 100644 --- a/src/client/views/MainView.scss +++ b/src/client/views/MainView.scss @@ -153,7 +153,7 @@ cursor: auto; } -.mainView-innerContent { +.mainView-innerContent, .mainView-innerContent-dark { display: contents; flex-direction: row; position: relative; @@ -174,6 +174,43 @@ right: 0; position: absolute; z-index: 2; + background-color: rgb(159, 159, 159); + .editable-title { + background-color: lightgrey; + } + } + +} +.mainView-innerContent-dark +{ + .propertiesView { + background-color: #252525; + input { + background-color: dimgrey; + } + .propertiesView-sharingTable + { + background-color: dimgrey; + } + .editable-title { + background-color: dimgrey; + } + .propertiesView-field { + background-color: dimgrey; + } + } + .mainView-propertiesDragger, + .mainView-libraryHandle { + background: #353535; + } +} +.mainView-container-dark { + .contextMenu-cont { + background: dimgrey; + color: white; + input::placeholder { + color:white; + } } } |
