aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/ContextMenu.scss
diff options
context:
space:
mode:
authorAshley Cai <ashley.lcai@gmail.com>2021-07-10 00:17:09 -0700
committerAshley Cai <ashley.lcai@gmail.com>2021-07-10 00:17:09 -0700
commit4fe24111c6eafc58927fcca9d8c46a5b92cc4078 (patch)
tree83d5b2b368ac58d1bca7a0bce81d538fe481dba6 /src/client/views/ContextMenu.scss
parent4c1fc6bcfdf603bb8c620f9288da09ed69587bfb (diff)
Standardizing Colors, changing global CSS variables
Diffstat (limited to 'src/client/views/ContextMenu.scss')
-rw-r--r--src/client/views/ContextMenu.scss18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/client/views/ContextMenu.scss b/src/client/views/ContextMenu.scss
index b514de5f2..2590e34c6 100644
--- a/src/client/views/ContextMenu.scss
+++ b/src/client/views/ContextMenu.scss
@@ -1,10 +1,10 @@
-@import "globalCssVariables";
+@import "global/globalCssVariables";
.contextMenu-cont {
position: absolute;
display: flex;
z-index: $contextMenu-zindex;
- box-shadow: $intermediate-color 0.2vw 0.2vw 0.4vw;
+ box-shadow: $medium-gray 0.2vw 0.2vw 0.4vw;
flex-direction: column;
background: whitesmoke;
padding-top: 10px;
@@ -14,17 +14,17 @@
}
// .contextMenu-item:first-child {
-// background: $intermediate-color;
-// color: $light-color;
+// background: $medium-gray;
+// color: $white;
// }
// .contextMenu-item:first-child::placeholder {
-// color: $light-color;
+// color: $white;
// }
// .contextMenu-item:first-child:hover {
-// background: $intermediate-color;
-// color: $light-color;
+// background: $medium-gray;
+// color: $white;
// }
.contextMenu-subMenu-cont {
@@ -94,7 +94,7 @@
.contextMenu-item:hover {
border-width: .11px;
border-style: none;
- border-color: $intermediate-color; // rgb(187, 186, 186);
+ border-color: $medium-gray; // rgb(187, 186, 186);
border-bottom-style: solid;
border-top-style: solid;
@@ -122,7 +122,7 @@
transition: all .1s;
border-width: .11px;
border-style: none;
- border-color: $intermediate-color; // rgb(187, 186, 186);
+ border-color: $medium-gray; // rgb(187, 186, 186);
// padding: 10px 0px 10px 0px;
white-space: nowrap;
font-size: 13px;