diff options
author | raveit65 <[email protected]> | 2016-02-24 11:11:12 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-02-24 11:23:25 +0100 |
commit | 73bc32eaf577cddce7f76b85a0f5347da5b62671 (patch) | |
tree | f397cd8a1b80aa9d187c373fd206efaa8a597dba | |
parent | 17efc436bfdf91b3b194ac05492cab720aa83557 (diff) | |
download | mate-themes-73bc32eaf577cddce7f76b85a0f5347da5b62671.tar.bz2 mate-themes-73bc32eaf577cddce7f76b85a0f5347da5b62671.tar.xz |
GTK+-3.20 Blue-Submarine: reduce transition duration to avoid menu and buttun flickering
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css | 10 | ||||
-rw-r--r-- | desktop-themes/Blue-Submarine/gtk-3.0/menu.css | 8 |
2 files changed, 9 insertions, 9 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 0ae47fa7..d0e041a7 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/gtk-widgets.css @@ -762,7 +762,7 @@ button label { }
button {
- transition: all 400ms ease-out;
+ transition: all 150ms ease-out;
-GtkArrow-arrow-scaling: 0.5;
background-image: -gtk-gradient (linear,
left top, left bottom,
@@ -793,7 +793,7 @@ button { }
button.default {
- transition: all 400ms ease-out;
+ transition: all 150ms ease-out;
text-shadow: none;
color: @theme_fg_color;
}
@@ -896,7 +896,7 @@ toolbar.vertical button.image-button.flat { button.text-button,
button.text-button:hover,
button.file {
- padding: 5px 4px;
+ padding: 6px;
}
combobox button.combo,
@@ -3148,7 +3148,7 @@ spinbutton.vertical entry:focus { /* volume button */
GtkGrid button,
GtkGrid button.flat {
- transition: all 600ms ease-out;
+ transition: all 400ms ease-out;
}
GtkGrid button,
@@ -4392,7 +4392,7 @@ list .separator.horizontal { list row,
list row.activatable {
padding: 2px;
- transition: all 200ms ease-in;
+ transition: all 400ms ease-in;
background-image: none;
background-color: @theme_base_color;
}
diff --git a/desktop-themes/Blue-Submarine/gtk-3.0/menu.css b/desktop-themes/Blue-Submarine/gtk-3.0/menu.css index c4e40ea0..07212fc3 100644 --- a/desktop-themes/Blue-Submarine/gtk-3.0/menu.css +++ b/desktop-themes/Blue-Submarine/gtk-3.0/menu.css @@ -86,7 +86,7 @@ menubar { ***************/ menubar > menuitem { padding: 5px 5px; - transition: all 300ms ease-out; + transition: all 200ms ease-out; border-radius: 0px; border-width: 0px; min-height: 16px; @@ -131,9 +131,9 @@ toolbar.primary-toolbar menuitem, toolbar.primary-toolbar button menuitem, window.background.popup menu menuitem, window.background.popup menuitem { - transition: all 300ms ease-out; +/* transition: all 300ms ease-out; FIXME this caused items jumpings* /* -GtkMenuItem-arrow-scaling: 0.7; */ - padding: 2px 4px; + transition: all 200ms ease-out border-radius: 0px; color: @menu_fg_dark_color; text-shadow: 1px 1px @menu_shadow_dark_color; @@ -161,7 +161,7 @@ treemenu menuitem { toolbar combobox menuitem, combobox menuitem { - transition: all 500ms ease-out; + transition: all 200ms ease-out; color: @menu_fg_dark_color; text-shadow: 0px 1px @menu_shadow_dark_color; } |