fixed hidden menu text

This commit is contained in:
Sam Hewitt 2016-04-24 10:44:45 -04:00
parent 6a68955302
commit fdff112dcd
3 changed files with 54 additions and 11 deletions

View File

@ -2637,6 +2637,11 @@ GraniteWidgetsWelcome {
.header-bar .button GtkLabel:backdrop,
.header-bar .button GtkImage:backdrop {
color: rgba(255, 255, 255, 0.3); }
.titlebar:not(headerbar) .button GtkLabel:insensitive,
.titlebar:not(headerbar) .button GtkImage:insensitive,
.header-bar .button GtkLabel:insensitive,
.header-bar .button GtkImage:insensitive {
-gtk-image-effect: dim; }
.titlebar:not(headerbar) .button:focus, .titlebar:not(headerbar) .button:hover,
.header-bar .button:focus,
.header-bar .button:hover {
@ -2685,12 +2690,8 @@ GraniteWidgetsWelcome {
color: rgba(255, 255, 255, 0.3);
background-color: transparent;
background-image: none; }
.titlebar:not(headerbar) .button:insensitive image,
.titlebar:not(headerbar) .button:insensitive GtkImage, .titlebar:not(headerbar) .button:insensitive:backdrop image,
.titlebar:not(headerbar) .button:insensitive:backdrop GtkImage,
.header-bar .button:insensitive image,
.titlebar:not(headerbar) .button:insensitive GtkImage, .titlebar:not(headerbar) .button:insensitive:backdrop GtkImage,
.header-bar .button:insensitive GtkImage,
.header-bar .button:insensitive:backdrop image,
.header-bar .button:insensitive:backdrop GtkImage {
-gtk-image-effect: dim; }
.titlebar:not(headerbar) .button.titlebutton,
@ -2722,6 +2723,18 @@ GraniteWidgetsWelcome {
.titlebar:not(headerbar) .button.titlebutton:active GtkImage,
.header-bar .button.titlebutton:active GtkImage {
color: #3B4245; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem GtkLabel,
.header-bar .button.menu-button .menu .menuitem GtkLabel {
color: #bcc1c3; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem GtkLabel:insensitive,
.header-bar .button.menu-button .menu .menuitem GtkLabel:insensitive {
color: #868d90; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem .separator,
.header-bar .button.menu-button .menu .menuitem .separator {
color: #373e41; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem:hover GtkLabel,
.header-bar .button.menu-button .menu .menuitem:hover GtkLabel {
color: #ffffff; }
.titlebar:not(headerbar) .button.suggested-action,
.header-bar .button.suggested-action {
font-weight: bold;

View File

@ -2646,6 +2646,11 @@ GraniteWidgetsWelcome {
.header-bar .button GtkLabel:backdrop,
.header-bar .button GtkImage:backdrop {
color: rgba(255, 255, 255, 0.5); }
.titlebar:not(headerbar) .button GtkLabel:insensitive,
.titlebar:not(headerbar) .button GtkImage:insensitive,
.header-bar .button GtkLabel:insensitive,
.header-bar .button GtkImage:insensitive {
-gtk-image-effect: dim; }
.titlebar:not(headerbar) .button:focus, .titlebar:not(headerbar) .button:hover,
.header-bar .button:focus,
.header-bar .button:hover {
@ -2694,12 +2699,8 @@ GraniteWidgetsWelcome {
color: rgba(255, 255, 255, 0.5);
background-color: transparent;
background-image: none; }
.titlebar:not(headerbar) .button:insensitive image,
.titlebar:not(headerbar) .button:insensitive GtkImage, .titlebar:not(headerbar) .button:insensitive:backdrop image,
.titlebar:not(headerbar) .button:insensitive:backdrop GtkImage,
.header-bar .button:insensitive image,
.titlebar:not(headerbar) .button:insensitive GtkImage, .titlebar:not(headerbar) .button:insensitive:backdrop GtkImage,
.header-bar .button:insensitive GtkImage,
.header-bar .button:insensitive:backdrop image,
.header-bar .button:insensitive:backdrop GtkImage {
-gtk-image-effect: dim; }
.titlebar:not(headerbar) .button.titlebutton,
@ -2731,6 +2732,18 @@ GraniteWidgetsWelcome {
.titlebar:not(headerbar) .button.titlebutton:active GtkImage,
.header-bar .button.titlebutton:active GtkImage {
color: #636E73; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem GtkLabel,
.header-bar .button.menu-button .menu .menuitem GtkLabel {
color: #666666; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem GtkLabel:insensitive,
.header-bar .button.menu-button .menu .menuitem GtkLabel:insensitive {
color: #afafaf; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem .separator,
.header-bar .button.menu-button .menu .menuitem .separator {
color: #d1d1d1; }
.titlebar:not(headerbar) .button.menu-button .menu .menuitem:hover GtkLabel,
.header-bar .button.menu-button .menu .menuitem:hover GtkLabel {
color: #ffffff; }
.titlebar:not(headerbar) .button.suggested-action,
.header-bar .button.suggested-action {
font-weight: bold;

View File

@ -222,6 +222,10 @@
&:backdrop {
color: $backdrop_headerbar_fg_color;
}
&:insensitive {
-gtk-image-effect: dim;
}
}
&:focus,
@ -279,7 +283,6 @@
background-color: transparent;
background-image: none;
image,
GtkImage {
-gtk-image-effect: dim;
}
@ -320,6 +323,20 @@
}
}
// Menu Button
&.menu-button {
.menu {
.menuitem {
GtkLabel {
color: $fg_color;
&:insensitive { color: $insensitive_fg_color; }
}
.separator { color: $borders_color;}
&:hover { GtkLabel {color: $selected_fg_color;}}
}
}
}
// Suggested Button
&.suggested-action {
font-weight: bold;