aboutsummaryrefslogtreecommitdiff
path: root/common/gnome-shell/3.18
diff options
context:
space:
mode:
authorHorst31802016-03-30 20:30:06 +0200
committerHorst31802016-03-30 20:30:06 +0200
commit7e7fd197b61d876914fbf0b7b58158ddf13796d4 (patch)
tree27e8b3a0494bec8885510ba94fa18edd4e18a7ef /common/gnome-shell/3.18
parent1b58ca05f6168842f409be9661c51229cd87114d (diff)
downloadsolarc-theme-7e7fd197b61d876914fbf0b7b58158ddf13796d4.tar.gz
solarc-theme-7e7fd197b61d876914fbf0b7b58158ddf13796d4.tar.xz
solarc-theme-7e7fd197b61d876914fbf0b7b58158ddf13796d4.zip
gnome-shell: fix entries
Diffstat (limited to 'common/gnome-shell/3.18')
-rw-r--r--common/gnome-shell/3.18/gnome-shell-dark.css6
-rw-r--r--common/gnome-shell/3.18/gnome-shell.css6
-rw-r--r--common/gnome-shell/3.18/sass/_common.scss9
3 files changed, 18 insertions, 3 deletions
diff --git a/common/gnome-shell/3.18/gnome-shell-dark.css b/common/gnome-shell/3.18/gnome-shell-dark.css
index 6e29ddc..99ef837 100644
--- a/common/gnome-shell/3.18/gnome-shell-dark.css
+++ b/common/gnome-shell/3.18/gnome-shell-dark.css
@@ -69,6 +69,7 @@ stage {
StEntry {
padding: 7px;
caret-size: 1px;
+ caret-color: #D3DAE3;
selection-background-color: #5294E2;
selected-color: #ffffff;
transition-duration: 300ms;
@@ -1919,6 +1920,7 @@ StScrollBar {
spacing: 4px; }
.lg-dialog StEntry {
+ caret-color: #ffffff;
selection-background-color: #5294E2;
selected-color: #ffffff;
color: #BAC3CF;
@@ -1929,7 +1931,9 @@ StScrollBar {
color: #ffffff;
background-color: #5294E2;
border: 1px solid rgba(26, 28, 34, 0.35);
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); }
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
+ selection-background-color: #ffffff;
+ selected-color: #5294E2; }
.lg-dialog .shell-link {
color: #a9caf1; }
diff --git a/common/gnome-shell/3.18/gnome-shell.css b/common/gnome-shell/3.18/gnome-shell.css
index 80f818c..f44f397 100644
--- a/common/gnome-shell/3.18/gnome-shell.css
+++ b/common/gnome-shell/3.18/gnome-shell.css
@@ -69,6 +69,7 @@ stage {
StEntry {
padding: 7px;
caret-size: 1px;
+ caret-color: #5c616c;
selection-background-color: #5294E2;
selected-color: #ffffff;
transition-duration: 300ms;
@@ -1919,6 +1920,7 @@ StScrollBar {
spacing: 4px; }
.lg-dialog StEntry {
+ caret-color: #ffffff;
selection-background-color: #5294E2;
selected-color: #ffffff;
color: #BAC3CF;
@@ -1929,7 +1931,9 @@ StScrollBar {
color: #ffffff;
background-color: #5294E2;
border: 1px solid rgba(26, 28, 34, 0.35);
- box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); }
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
+ selection-background-color: #ffffff;
+ selected-color: #5294E2; }
.lg-dialog .shell-link {
color: #2679db; }
diff --git a/common/gnome-shell/3.18/sass/_common.scss b/common/gnome-shell/3.18/sass/_common.scss
index 6094af9..9b7eb61 100644
--- a/common/gnome-shell/3.18/sass/_common.scss
+++ b/common/gnome-shell/3.18/sass/_common.scss
@@ -81,6 +81,7 @@ stage {
StEntry {
padding: 7px;
caret-size: 1px;
+ caret-color: $fg_color;
selection-background-color: $selected_bg_color;
selected-color: $selected_fg_color;
transition-duration: 300ms;
@@ -2302,11 +2303,17 @@ $legacy_icon_size: 24px;
.lg-dialog {
StEntry {
+ caret-color: $selected_fg_color;
selection-background-color: $selected_bg_color;
selected-color: $selected_fg_color;
@include entry(osd);
- &:focus { @include entry(osd-focus); }
+ &:focus {
+ @include entry(osd-focus);
+
+ selection-background-color: $selected_fg_color;
+ selected-color: $selected_bg_color;
+ }
}
.shell-link {
color: $link_color;