diff options
author | Horst3180 | 2015-09-17 00:45:17 +0200 |
---|---|---|
committer | Horst3180 | 2015-09-17 00:45:17 +0200 |
commit | 8ea9b6922713cc5d2668edc212c39e62d6859d27 (patch) | |
tree | 2aac779a4e5c54a5d227ea7032bbd33e84f9c73f /common/gnome-shell | |
parent | bcf612534ec157c42acd368cda391da02cb39384 (diff) | |
download | solarc-theme-8ea9b6922713cc5d2668edc212c39e62d6859d27.tar.gz solarc-theme-8ea9b6922713cc5d2668edc212c39e62d6859d27.tar.xz solarc-theme-8ea9b6922713cc5d2668edc212c39e62d6859d27.zip |
gnome-shell 3.14: fix run dialog entry cursor
Diffstat (limited to 'common/gnome-shell')
-rw-r--r-- | common/gnome-shell/3.14/gnome-shell-dark.css | 3 | ||||
-rw-r--r-- | common/gnome-shell/3.14/gnome-shell.css | 3 | ||||
-rw-r--r-- | common/gnome-shell/3.14/sass/_common.scss | 5 |
3 files changed, 8 insertions, 3 deletions
diff --git a/common/gnome-shell/3.14/gnome-shell-dark.css b/common/gnome-shell/3.14/gnome-shell-dark.css index 4a0de9c..733c9e8 100644 --- a/common/gnome-shell/3.14/gnome-shell-dark.css +++ b/common/gnome-shell/3.14/gnome-shell-dark.css @@ -256,7 +256,8 @@ StScrollBar { padding-bottom: 0; height: 30px; } .modal-dialog .run-dialog-entry { - width: 21em; } + width: 21em; + caret-color: #D3DAE3; } .modal-dialog .run-dialog-error-box { padding-top: 5px; spacing: 5px; } diff --git a/common/gnome-shell/3.14/gnome-shell.css b/common/gnome-shell/3.14/gnome-shell.css index 466cb18..d636cd8 100644 --- a/common/gnome-shell/3.14/gnome-shell.css +++ b/common/gnome-shell/3.14/gnome-shell.css @@ -256,7 +256,8 @@ StScrollBar { padding-bottom: 0; height: 30px; } .modal-dialog .run-dialog-entry { - width: 21em; } + width: 21em; + caret-color: #5c616c; } .modal-dialog .run-dialog-error-box { padding-top: 5px; spacing: 5px; } diff --git a/common/gnome-shell/3.14/sass/_common.scss b/common/gnome-shell/3.14/sass/_common.scss index 5d56a02..63e239e 100644 --- a/common/gnome-shell/3.14/sass/_common.scss +++ b/common/gnome-shell/3.14/sass/_common.scss @@ -256,7 +256,10 @@ StScrollBar { } } - .run-dialog-entry { width: 21em;} + .run-dialog-entry { + width: 21em; + caret-color: $fg_color; + } .run-dialog-error-box { padding-top: 5px; spacing: 5px; |