diff options
author | raveit65 <[email protected]> | 2016-02-25 16:34:34 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-02-25 16:34:34 +0100 |
commit | 8b44c534a963999a59834708e15dcb8926279e00 (patch) | |
tree | a95b5b1ea4f5a177428927f50ffa88867dd6f532 | |
parent | e0b2ea31f45eab05113f2762cfbd2442fc3b0919 (diff) | |
download | mate-themes-8b44c534a963999a59834708e15dcb8926279e00.tar.bz2 mate-themes-8b44c534a963999a59834708e15dcb8926279e00.tar.xz |
GTK+-3.20 Blue-Submarine: fix rubberband bg color + bg color of selected icons if unfocused
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css index a0162f87..fd499bdf 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -157,8 +157,11 @@ tooltip * { background-image: url("assets/resize-grip.svg");
}
+/* ie. selection mouse retancle in caja */
view.rubberband,
-rubberband {
+rubberband,
+.view.rubberband,
+.rubberband {
background-color: alpha (@theme_selected_bg_color, 0.35);
border-color: @theme_selected_bg_color;
border-style: solid;
@@ -2960,7 +2963,9 @@ calendar.header stackswitcher > button.titlebutton > image { padding-bottom: 3px;
}
+stackswitcher.linked.stack-switcher > button.text-button.radio,
stackswitcher > button.text-button.radio,
+stackswitcher > .linked.stackswitcher > button.text-button.radio,
stackswitcher > button.image-button.radio,
headerbar stackswitcher > button.titlebutton,
headerbar.titlebar stackswitcher > button.titlebutton,
@@ -4012,6 +4017,11 @@ view text selection:focus, text-shadow: none;
}
+/* ie. coloe of selected icons if unfocused */
+.view:active {
+ background-color: shade(@theme_bg_color, 0.8);
+}
+
.view text selection:focus,
.view:selected:focus {
text-shadow: 0px 1px @theme_selected_shadow_color;
|