diff options
author | Horst3180 | 2015-08-27 20:55:37 +0200 |
---|---|---|
committer | Horst3180 | 2015-08-27 21:03:06 +0200 |
commit | 8c0e60f997d70cdb63566f46390546691d947749 (patch) | |
tree | 817385dcb4158849dad6257e4c85ad2e3aef3e03 /common/gnome-shell/3.16/sass/_common.scss | |
parent | bd550a46d936226801cb9d8cef9ea6273894b51c (diff) | |
parent | b811483e7f6fb97afa531a873c73a48f48ef8468 (diff) | |
download | solarc-theme-8c0e60f997d70cdb63566f46390546691d947749.tar.gz solarc-theme-8c0e60f997d70cdb63566f46390546691d947749.tar.xz solarc-theme-8c0e60f997d70cdb63566f46390546691d947749.zip |
Merge branch 'master' into wip/3.18
Diffstat (limited to 'common/gnome-shell/3.16/sass/_common.scss')
-rw-r--r-- | common/gnome-shell/3.16/sass/_common.scss | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/common/gnome-shell/3.16/sass/_common.scss b/common/gnome-shell/3.16/sass/_common.scss index cb4815b..2578ae7 100644 --- a/common/gnome-shell/3.16/sass/_common.scss +++ b/common/gnome-shell/3.16/sass/_common.scss @@ -53,6 +53,10 @@ stage { transition-duration: 0; border-radius: 2px; + @extend %button; +} + +%button { @include button(normal); &:focus { @include button(focus); } @@ -80,7 +84,7 @@ StEntry { selection-background-color: $selected_bg_color; selected-color: $selected_fg_color; transition-duration: 300ms; - border-radius: 20px; + border-radius: 3px; @include entry(normal); @@ -769,6 +773,9 @@ StScrollBar { min-height: 27px; border-image: url('common-assets/panel/panel.svg') 1 1 1 1; + // Fix dynamic top bar extension + &.dynamic-top-bar-white-btn { border-image: none; } + &.unlock-screen, &.login-screen, &.lock-screen { @@ -1733,10 +1740,10 @@ StScrollBar { width: 34em; margin: 5px; padding: 10px; - color: $osd_fg_color; + color: $fg_color; background-color: transparent; border: 1px solid transparent; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; + border-image: url("#{$asset_path}/menu/menu.svg") 9 9 9 9; .notification-icon { padding: 5px; } @@ -1751,7 +1758,7 @@ StScrollBar { } .notification-button { padding: 4px 4px 5px; - @extend %osd_button; + @extend %button; &:first-child, &:last-child { border-radius: 2px; } } @@ -1762,7 +1769,7 @@ StScrollBar { // Chat Bubbles .chat-body { spacing: 5px; } .chat-response { margin: 5px; } -.chat-log-message { color: $osd_fg_color; } +.chat-log-message { color: $fg_color; } .chat-new-group { padding-top: 1em; } .chat-received { padding-left: 4px; @@ -1770,12 +1777,6 @@ StScrollBar { &:rtl { padding-left: 0px; padding-right: 4px; } } -StEntry.chat-response { - @include entry(osd); - - &:focus { @include entry(osd-focus); } -} - .chat-sent { padding-left: 18pt; color: $selected_bg_color; @@ -1787,7 +1788,7 @@ StEntry.chat-response { padding-left: 4px; font-size: 9pt; font-weight: bold; - color: transparentize($osd_fg_color, 0.4); + color: transparentize($fg_color, 0.4); &:rtl { padding-left: 0; padding-right: 4px; } } @@ -1802,7 +1803,7 @@ StEntry.chat-response { .hotplug-notification-item { padding: 2px 10px; - @extend %osd_button; + @extend %button; &:focus { padding: 2px 10px; } } |