summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Fleury <contact@jpfleury.net>2014-10-02 04:41:30 -0400
committerJean-Philippe Fleury <contact@jpfleury.net>2014-10-02 04:41:30 -0400
commiteed5d51b1f7e6c8c97b59b4a8876372d7104ab9c (patch)
treeb29095ed6d6d8c8fbd2b16e8a2b52c48a0e3953c
parente644bb02b7f6c64b784d802f9d3a97db754c4b6e (diff)
Revert "Fixes #6" because it causes regression with path bar
This reverts commit e0bf9d0ea8a3fdd5d9e0c0f67c5b03f036ba2b49.
-rw-r--r--gtk-3.0/gtk-widgets-img.css28
1 files changed, 21 insertions, 7 deletions
diff --git a/gtk-3.0/gtk-widgets-img.css b/gtk-3.0/gtk-widgets-img.css
index e1a9b96..dec374c 100644
--- a/gtk-3.0/gtk-widgets-img.css
+++ b/gtk-3.0/gtk-widgets-img.css
@@ -675,7 +675,14 @@ column-header:last-child .button:active:focus {
.linked .button:active:hover:first-child,
.linked .button:focus:first-child,
.linked .button:focus:active:first-child,
-.linked .button:insensitive:first-child,
+.linked .button:insensitive:first-child {
+ border-image: none;
+ border-radius: 3px 0 0 3px;
+ border-color: @border_color;
+ border-width: 1px;
+ padding: 1px 2px;
+}
+
/* Middle button */
.linked .entry,
.linked > GtkComboBox > .button:last-child,
@@ -689,7 +696,14 @@ column-header:last-child .button:active:focus {
.linked .button:active:hover,
.linked .button:focus,
.linked .button:focus:active,
-.linked .button:insensitive,
+.linked .button:insensitive {
+ border-image: none;
+ border-radius: 0;
+ border-color: @border_color;
+ border-width: 1px 0;
+ padding: 1px 2px;
+}
+
/* Rightmost button */
.linked .entry:last-child,
.linked > GtkComboBox:last-child > .button,
@@ -700,9 +714,9 @@ column-header:last-child .button:active:focus {
.linked .button:focus:last-child,
.linked .button:focus:active:last-child,
.linked .button:insensitive:last-child {
- border-image: none;
- border-radius: 3px;
- border-color: @border_color;
- border-width: 1px;
- padding: 1px 2px;
+ border-image: none;
+ border-radius: 0 3px 3px 0;
+ border-color: @border_color;
+ border-width: 1px;
+ padding: 1px 2px;
}