diff options
author | Horst3180 | 2016-08-31 01:00:14 +0200 |
---|---|---|
committer | Horst3180 | 2016-08-31 01:00:14 +0200 |
commit | 0cfa794f7c067ea222a7e6b4a8629f6b3532d3a6 (patch) | |
tree | 9dac4fe8954d883770835e17399072d73ea225bf /common/gtk-3.0/3.20/sass/_granite.scss | |
parent | 5bd92f12a20358711ab7f7a55befb44acc0d5fa5 (diff) | |
download | solarc-theme-0cfa794f7c067ea222a7e6b4a8629f6b3532d3a6.tar.gz solarc-theme-0cfa794f7c067ea222a7e6b4a8629f6b3532d3a6.tar.xz solarc-theme-0cfa794f7c067ea222a7e6b4a8629f6b3532d3a6.zip |
GTK 3.22: fix parsing errors
Diffstat (limited to 'common/gtk-3.0/3.20/sass/_granite.scss')
-rw-r--r-- | common/gtk-3.0/3.20/sass/_granite.scss | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/gtk-3.0/3.20/sass/_granite.scss b/common/gtk-3.0/3.20/sass/_granite.scss index a491d31..a564d55 100644 --- a/common/gtk-3.0/3.20/sass/_granite.scss +++ b/common/gtk-3.0/3.20/sass/_granite.scss @@ -151,7 +151,7 @@ GraniteWidgetsWelcome { GraniteWidgetsWelcome label { color: mix($fg_color, $bg_color, 50%); - font: open sans 11; + font-size: 11px; text-shadow: none; } @@ -182,7 +182,7 @@ GraniteWidgetsPopOver { } .popover_bg { - background-image: linear-gradient(to bottom, $base_color); + background-image: _solid($base_color); border: 1px solid transparentize(black, 0.7); } @@ -199,9 +199,9 @@ GraniteWidgetsXsEntry entry { padding: 4px; } // // Text Styles // -.h1 { font: open sans 24px; } -.h2 { font: open sans light 18px; } -.h3 { font: open sans 11px; } +.h1 { font-size: 24px; } +.h2 { font-size: 18px; } +.h3 { font-size: 11px; } .h4, .category-label { color: mix($bg_color, $text_color, 30%); |