summaryrefslogtreecommitdiff
path: root/desktop-themes
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2014-12-15 03:44:25 +0100
committerraveit65 <[email protected]>2014-12-16 03:43:55 +0100
commit23dd85bcb8619efd9312375f90273376b8454db9 (patch)
tree68e09257a4bd67a50a595fdc9a4d910a06e71a83 /desktop-themes
parentb6f1d06d98ce27fb5630d2d1847ac778eb6a3ae5 (diff)
downloadmate-themes-23dd85bcb8619efd9312375f90273376b8454db9.tar.bz2
mate-themes-23dd85bcb8619efd9312375f90273376b8454db9.tar.xz
GrennLaguna GTK3: add transition effeffect for buttons and menu-buttons/items
Diffstat (limited to 'desktop-themes')
-rw-r--r--desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css48
-rw-r--r--desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css12
2 files changed, 26 insertions, 34 deletions
diff --git a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css
index f0cbdfc3..38c7a53a 100644
--- a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css
+++ b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css
@@ -873,19 +873,18 @@ GtkTreeMenu .menuitem * {
* Buttons *
***********/
.button {
- /* Due to a bug somewhere in gtk or cairo,
- a padding of zero (or even one) doesn't work always! */
- padding: 2px;
- -GtkWidget-focus-line-width: 0;
-
- border-radius: 3px;
- border-width: 1px;
- border-style: solid;
- /*border-image is defined in gtk-widgets-assets.css*/
-
- background-image: linear-gradient(to bottom,
- @button_gradient_color_a,
- @button_gradient_color_b);
+ /* Due to a bug somewhere in gtk or cairo,
+ a padding of zero (or even one) doesn't work always! */
+ padding: 2px;
+ -GtkWidget-focus-line-width: 0;
+ border-radius: 3px;
+ border-width: 1px;
+ border-style: solid;
+ /*border-image is defined in gtk-widgets-assets.css*/
+ background-image: linear-gradient(to bottom,
+ @button_gradient_color_a,
+ @button_gradient_color_b);
+ transition: all 200ms ease-out;
}
.button.image-button,
@@ -1198,23 +1197,24 @@ GtkTreeMenu .menuitem * {
/* this controls the general appearance of the menubar */
.menubar {
- background-image: none;
- background-color: @theme_bg_color;
- border-width: 0px;
- border-style: none;
- padding: 0px;
- color: @theme_text_color;
-
- -GtkWidget-window-dragging: true;
- /*-GtkMenuBar-internal-padding: 0;*/
+ background-image: none;
+ background-color: @theme_bg_color;
+ border-width: 0px;
+ border-style: none;
+ padding: 0px;
+ color: @theme_text_color;
+ -GtkWidget-window-dragging: true;
+ /*-GtkMenuBar-internal-padding: 0;*/
}
.menubar .menuitem {
- padding: 3px 7px;
+ transition: all 200ms ease-out;
+ padding: 3px 7px;
}
.menu .menuitem {
- padding: 3px 4px;
+ transition: all 200ms ease-out;
+ padding: 3px 4px;
}
.menubar .menuitem,
diff --git a/desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css b/desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css
index 2de053e7..7043efd7 100644
--- a/desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css
+++ b/desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css
@@ -201,18 +201,9 @@ MatePanelApplet {
text-shadow: none;
}
-/* needed for a working top panel with 24px (default) */
-PanelMenuBar.menubar * {
- background-image: none;
- background-color: transparent;
- border-width: 0px;
- border-style: none;
- padding: 0px;
- text-shadow: none;
-}
-
/* set selected menubar button */
PanelMenuBar.menubar .menuitem:hover {
+ transition: all 300ms ease-out;
background-image: none;
background-color: shade(@theme_selected_bg_color, 1.1);
border-style: none;
@@ -226,6 +217,7 @@ PanelMenuBar.menubar .menuitem:hover {
/* set selected menubar menuitem */
PanelMenuBar.menubar .menu .menuitem:active:hover,
PanelMenuBar.menubar .menu .menuitem:hover {
+ transition: all 300ms ease-out;
background-image: linear-gradient(to bottom,
shade(@theme_selected_bg_color, 1.6),
shade(@theme_selected_bg_color, 0.6));