diff options
author | Horst3180 | 2015-07-02 16:59:22 +0200 |
---|---|---|
committer | Horst3180 | 2015-07-02 16:59:22 +0200 |
commit | 997c88ebcc5d24a64d059f5007d5fff0119a1962 (patch) | |
tree | 3f45b43fa3da2e093c70cb29e1778efced27c3a2 /common/gtk-3.0/3.14/_common.scss | |
parent | 924cfb92065aa8fe64da2e271dd014de2d0187c2 (diff) | |
download | solarc-theme-997c88ebcc5d24a64d059f5007d5fff0119a1962.tar.gz solarc-theme-997c88ebcc5d24a64d059f5007d5fff0119a1962.tar.xz solarc-theme-997c88ebcc5d24a64d059f5007d5fff0119a1962.zip |
osd style app-notifications
Diffstat (limited to 'common/gtk-3.0/3.14/_common.scss')
-rw-r--r-- | common/gtk-3.0/3.14/_common.scss | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/common/gtk-3.0/3.14/_common.scss b/common/gtk-3.0/3.14/_common.scss index b78f78d..c0a6713 100644 --- a/common/gtk-3.0/3.14/_common.scss +++ b/common/gtk-3.0/3.14/_common.scss @@ -2153,14 +2153,27 @@ GtkScrolledWindow { .app-notification, .app-notification.frame { + @extend %osd; padding: 10px; - border-radius: 0 0 2.5px 2.5px; - border-width: 0 1px 1px; + background-color: $osd_bg_color; + background-clip: border-box; + border-radius: 0 0 2px 2px; + border-width: 0 1px 1px 1px; border-style: solid; - border-color: rgba(0,0,0,0.2); - background-color: $base_color; - - background-clip: padding-box; + border-color: darken($osd_bg_color, 10%); + + .button { + @include button(osd); + &.flat { + @extend %undecorated_button; + border-color: transparentize($selected_bg_color, 1); + &:insensitive { @extend %undecorated_button; } + } + &:hover { @include button(osd-hover); } + &:active, &:checked { @include button(osd-active); } + &:insensitive { @include button(osd-insensitive); + } + } } /************* |