diff options
author | Horst3180 | 2015-08-26 13:08:42 +0200 |
---|---|---|
committer | Horst3180 | 2015-08-26 13:08:42 +0200 |
commit | fa43da15f2cc2c34ffe231d2d566bc691d7ccaf8 (patch) | |
tree | d22f1a99b1715414bbb77869739d1029fad70da2 /common/cinnamon | |
parent | 3f30c8d736ddabea21f1abd3d5ece85a996e924c (diff) | |
download | solarc-theme-fa43da15f2cc2c34ffe231d2d566bc691d7ccaf8.tar.gz solarc-theme-fa43da15f2cc2c34ffe231d2d566bc691d7ccaf8.tar.xz solarc-theme-fa43da15f2cc2c34ffe231d2d566bc691d7ccaf8.zip |
make textboxes less rounded
Diffstat (limited to 'common/cinnamon')
-rw-r--r-- | common/cinnamon/cinnamon.css | 8 | ||||
-rw-r--r-- | common/cinnamon/sass/_common.scss | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/common/cinnamon/cinnamon.css b/common/cinnamon/cinnamon.css index 3e3b65b..74bda1e 100644 --- a/common/cinnamon/cinnamon.css +++ b/common/cinnamon/cinnamon.css @@ -85,7 +85,7 @@ stage { selection-background-color: #5294E2; selected-color: #ffffff; transition-duration: 300ms; - border-radius: 20px; + border-radius: 3px; box-shadow: inset 0 0 rgba(255, 255, 255, 0); color: #5c616c; background-color: #ffffff; @@ -112,7 +112,7 @@ stage { selection-background-color: #5294E2; selected-color: #ffffff; transition-duration: 300ms; - border-radius: 20px; + border-radius: 3px; box-shadow: inset 0 0 rgba(255, 255, 255, 0); color: #BAC3CF; background-color: rgba(0, 0, 0, 0.2); @@ -229,7 +229,7 @@ StScrollBar { color: #5294e2; } #Tooltip { - border-radius: l3px; + border-radius: 3px; padding: 5px 12px; background-color: rgba(42, 44, 51, 0.95); color: #BAC3CF; @@ -740,7 +740,7 @@ StScrollBar { .run-dialog-entry { width: 21em; padding: 7px; - border-radius: 20px; + border-radius: 3px; caret-color: #BAC3CF; selected-color: #ffffff; selection-background-color: #5294E2; diff --git a/common/cinnamon/sass/_common.scss b/common/cinnamon/sass/_common.scss index 6f3d5ad..2f0bbe4 100644 --- a/common/cinnamon/sass/_common.scss +++ b/common/cinnamon/sass/_common.scss @@ -67,7 +67,7 @@ stage { selection-background-color: $selected_bg_color; selected-color: $selected_fg_color; transition-duration: 300ms; - border-radius: 20px; + border-radius: 3px; @include entry(normal); @@ -88,7 +88,7 @@ stage { selection-background-color: $selected_bg_color; selected-color: $selected_fg_color; transition-duration: 300ms; - border-radius: 20px; + border-radius: 3px; @include entry(osd); @@ -234,7 +234,7 @@ StScrollBar { // Tooltip // #Tooltip { - border-radius: l3px; + border-radius: 3px; padding: 5px 12px; background-color: $osd_bg_color; color: $osd_fg_color; @@ -899,7 +899,7 @@ StScrollBar { &-entry { width: 21em; padding: 7px; - border-radius: 20px; + border-radius: 3px; caret-color: $osd_fg_color; selected-color: $selected_fg_color; selection-background-color: $selected_bg_color; |