diff options
author | Jude <julie_wang1@brown.edu> | 2019-03-10 13:43:29 -0400 |
---|---|---|
committer | Jude <julie_wang1@brown.edu> | 2019-03-10 13:43:29 -0400 |
commit | 703b34e973d7c299c591c165e221f46e75a15c42 (patch) | |
tree | 1a95a0d239730b702b9f1fac30c0259404550bc9 /src | |
parent | 8145fd3bcd2abeb8f8c0e819e365b90e7227b8b3 (diff) |
fixed font weight and search in context menu
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/ContextMenu.scss | 14 | ||||
-rw-r--r-- | src/client/views/_global_variables.scss | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/src/client/views/ContextMenu.scss b/src/client/views/ContextMenu.scss index 3565a929a..f6830d9cd 100644 --- a/src/client/views/ContextMenu.scss +++ b/src/client/views/ContextMenu.scss @@ -7,6 +7,20 @@ flex-direction: column; } +.contextMenu-item:first-child { + background: $intermediate-color; + color: $light-color; +} + +.contextMenu-item:first-child::placeholder { + color: $light-color; +} + +.contextMenu-item:first-child:hover { + background: $intermediate-color; + color: $light-color; +} + .contextMenu-item { width: auto; height: auto; diff --git a/src/client/views/_global_variables.scss b/src/client/views/_global_variables.scss index 1c06ab44a..333fb3122 100644 --- a/src/client/views/_global_variables.scss +++ b/src/client/views/_global_variables.scss @@ -1,4 +1,4 @@ -@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:,700|Crimson+Text:400,400i,700"); +@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:300,700|Crimson+Text:400,400i,700"); // colors $light-color: #fcfbf7; |