diff options
author | Horst3180 | 2016-03-21 21:39:18 +0100 |
---|---|---|
committer | Horst3180 | 2016-03-21 21:39:18 +0100 |
commit | 674ffa0890353fa72dae97305ca38996932fa964 (patch) | |
tree | 357144afc8a335ae868b9e8cff7db21c3eed081f /common/gtk-3.0/3.20 | |
parent | f8f4356aeda443852db4babb8bba46e81bf0f9f0 (diff) | |
download | solarc-theme-674ffa0890353fa72dae97305ca38996932fa964.tar.gz solarc-theme-674ffa0890353fa72dae97305ca38996932fa964.tar.xz solarc-theme-674ffa0890353fa72dae97305ca38996932fa964.zip |
set min-width on spinbutton entries
Diffstat (limited to 'common/gtk-3.0/3.20')
-rw-r--r-- | common/gtk-3.0/3.20/gtk-dark.css | 3 | ||||
-rw-r--r-- | common/gtk-3.0/3.20/gtk-darker.css | 3 | ||||
-rw-r--r-- | common/gtk-3.0/3.20/gtk-solid-dark.css | 3 | ||||
-rw-r--r-- | common/gtk-3.0/3.20/gtk-solid-darker.css | 3 | ||||
-rw-r--r-- | common/gtk-3.0/3.20/gtk-solid.css | 3 | ||||
-rw-r--r-- | common/gtk-3.0/3.20/gtk.css | 3 | ||||
-rw-r--r-- | common/gtk-3.0/3.20/sass/_common.scss | 2 |
7 files changed, 20 insertions, 0 deletions
diff --git a/common/gtk-3.0/3.20/gtk-dark.css b/common/gtk-3.0/3.20/gtk-dark.css index ea72108..8f6329d 100644 --- a/common/gtk-3.0/3.20/gtk-dark.css +++ b/common/gtk-3.0/3.20/gtk-dark.css @@ -733,6 +733,9 @@ spinbutton button:active { spinbutton:disabled { color: rgba(211, 218, 227, 0.45); } +spinbutton:not(.vertical) entry { + min-width: 28px; } + spinbutton:not(.vertical):dir(ltr) entry, spinbutton:not(.vertical):dir(rtl) button.up { border-radius: 3px 0 0 3px; } diff --git a/common/gtk-3.0/3.20/gtk-darker.css b/common/gtk-3.0/3.20/gtk-darker.css index 6bd242e..a450743 100644 --- a/common/gtk-3.0/3.20/gtk-darker.css +++ b/common/gtk-3.0/3.20/gtk-darker.css @@ -732,6 +732,9 @@ spinbutton button:active { spinbutton:disabled { color: rgba(92, 97, 108, 0.55); } +spinbutton:not(.vertical) entry { + min-width: 28px; } + spinbutton:not(.vertical):dir(ltr) entry, spinbutton:not(.vertical):dir(rtl) button.up { border-radius: 3px 0 0 3px; } diff --git a/common/gtk-3.0/3.20/gtk-solid-dark.css b/common/gtk-3.0/3.20/gtk-solid-dark.css index edb76c9..5f9083b 100644 --- a/common/gtk-3.0/3.20/gtk-solid-dark.css +++ b/common/gtk-3.0/3.20/gtk-solid-dark.css @@ -733,6 +733,9 @@ spinbutton button:active { spinbutton:disabled { color: rgba(211, 218, 227, 0.45); } +spinbutton:not(.vertical) entry { + min-width: 28px; } + spinbutton:not(.vertical):dir(ltr) entry, spinbutton:not(.vertical):dir(rtl) button.up { border-radius: 3px 0 0 3px; } diff --git a/common/gtk-3.0/3.20/gtk-solid-darker.css b/common/gtk-3.0/3.20/gtk-solid-darker.css index 452c8a2..db3c774 100644 --- a/common/gtk-3.0/3.20/gtk-solid-darker.css +++ b/common/gtk-3.0/3.20/gtk-solid-darker.css @@ -732,6 +732,9 @@ spinbutton button:active { spinbutton:disabled { color: rgba(92, 97, 108, 0.55); } +spinbutton:not(.vertical) entry { + min-width: 28px; } + spinbutton:not(.vertical):dir(ltr) entry, spinbutton:not(.vertical):dir(rtl) button.up { border-radius: 3px 0 0 3px; } diff --git a/common/gtk-3.0/3.20/gtk-solid.css b/common/gtk-3.0/3.20/gtk-solid.css index aa287ff..e979f58 100644 --- a/common/gtk-3.0/3.20/gtk-solid.css +++ b/common/gtk-3.0/3.20/gtk-solid.css @@ -732,6 +732,9 @@ spinbutton button:active { spinbutton:disabled { color: rgba(92, 97, 108, 0.55); } +spinbutton:not(.vertical) entry { + min-width: 28px; } + spinbutton:not(.vertical):dir(ltr) entry, spinbutton:not(.vertical):dir(rtl) button.up { border-radius: 3px 0 0 3px; } diff --git a/common/gtk-3.0/3.20/gtk.css b/common/gtk-3.0/3.20/gtk.css index 8cab57a..02ee058 100644 --- a/common/gtk-3.0/3.20/gtk.css +++ b/common/gtk-3.0/3.20/gtk.css @@ -732,6 +732,9 @@ spinbutton button:active { spinbutton:disabled { color: rgba(92, 97, 108, 0.55); } +spinbutton:not(.vertical) entry { + min-width: 28px; } + spinbutton:not(.vertical):dir(ltr) entry, spinbutton:not(.vertical):dir(rtl) button.up { border-radius: 3px 0 0 3px; } diff --git a/common/gtk-3.0/3.20/sass/_common.scss b/common/gtk-3.0/3.20/sass/_common.scss index 40a0f53..d46f294 100644 --- a/common/gtk-3.0/3.20/sass/_common.scss +++ b/common/gtk-3.0/3.20/sass/_common.scss @@ -729,6 +729,8 @@ spinbutton { &:disabled { color: $insensitive_fg_color; } &:not(.vertical) { + entry { min-width: 28px; } + button, entry { @extend %linked; } &:dir(ltr) entry, |