aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/styles/title-bar.scss14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/styles/title-bar.scss b/src/styles/title-bar.scss
index 885eb94c4..c7cbcabed 100644
--- a/src/styles/title-bar.scss
+++ b/src/styles/title-bar.scss
@@ -4,15 +4,15 @@
4 background: $dark-theme-gray-darker; 4 background: $dark-theme-gray-darker;
5 5
6 .toolbar-dropdown { 6 .toolbar-dropdown {
7 &.open > .toolbar-button > button { 7 &.open > .toolbar-button > button {
8 background: $dark-theme-gray-light; 8 background: $dark-theme-gray-light;
9 color: $dark-theme-gray-lightest; 9 color: $dark-theme-gray-lightest;
10 } 10 }
11 11
12 &:not(.open) { 12 &:not(.open) {
13 .menu-item .menu-label { opacity: 1; } 13 .menu-item .menu-label { opacity: 1; }
14 > .toolbar-button > button:hover { 14 > .toolbar-button > button:hover {
15 background: $dark-theme-gray-darkest; 15 background: $dark-theme-gray-darkest;
16 } 16 }
17 } 17 }
18 } 18 }
@@ -22,13 +22,13 @@
22 22
23 .menu-pane { 23 .menu-pane {
24 background: $dark-theme-gray-light; 24 background: $dark-theme-gray-light;
25 25
26 .menu-item { 26 .menu-item {
27 .accelerator { 27 .accelerator {
28 color: lighten($dark-theme-gray-light, 20%); 28 color: lighten($dark-theme-gray-light, 20%);
29 } 29 }
30 } 30 }
31 31
32 hr { 32 hr {
33 border-color: $dark-theme-gray-lighter; 33 border-color: $dark-theme-gray-lighter;
34 } 34 }
@@ -76,5 +76,9 @@
76 border-bottom-left-radius: $theme-border-radius-small; 76 border-bottom-left-radius: $theme-border-radius-small;
77 border-bottom-right-radius: $theme-border-radius-small; 77 border-bottom-right-radius: $theme-border-radius-small;
78 box-shadow: 0 0 10px rgba(black, .5); 78 box-shadow: 0 0 10px rgba(black, .5);
79
80 &.menu-endblock {
81 border-left-width: 0px;
82 }
79 } 83 }
80} 84}