diff options
author | Horst3180 | 2016-08-31 14:02:58 +0200 |
---|---|---|
committer | Horst3180 | 2016-08-31 14:02:58 +0200 |
commit | 32017a269249480efe8906ff19d0f797ae665dd2 (patch) | |
tree | 60289eba3885317d51bb234a19c0b33444f6537f /common/gtk-3.0/3.20/sass | |
parent | 57248f7aaff30b7242f2f62877707695a1f8be5e (diff) | |
download | solarc-theme-32017a269249480efe8906ff19d0f797ae665dd2.tar.gz solarc-theme-32017a269249480efe8906ff19d0f797ae665dd2.tar.xz solarc-theme-32017a269249480efe8906ff19d0f797ae665dd2.zip |
fix infobar styling
Diffstat (limited to 'common/gtk-3.0/3.20/sass')
-rw-r--r-- | common/gtk-3.0/3.20/sass/_common.scss | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/common/gtk-3.0/3.20/sass/_common.scss b/common/gtk-3.0/3.20/sass/_common.scss index 4554de6..8e6d371 100644 --- a/common/gtk-3.0/3.20/sass/_common.scss +++ b/common/gtk-3.0/3.20/sass/_common.scss @@ -2781,28 +2781,28 @@ paned { // // GtkInfoBar // -infobar { border-style: none; } +infobar { + border-style: none; -.info, -.question, -.warning, -.error { - background-color: $selected_bg_color; - color: $selected_fg_color; + &.info, + &.question, + &.warning, + &.error { + background-color: $selected_bg_color; + color: $selected_fg_color; + caret-color: currentColor; - button { @extend %selected-button } + button { @extend %selected-button } - label:selected { - &:focus, &:hover, & { + selection { color: $selected_bg_color; background-color: $selected_fg_color; } - } - *:link { @extend %link_selected; } + *:link { @extend %link_selected; } + } } - // // Buttons on selected backgrounds // |