summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2015-05-05 23:19:52 +0200
committerraveit65 <[email protected]>2015-05-05 23:21:21 +0200
commitc05d6caeb37556a607c5c618c7f345b363a441a9 (patch)
treef381d5a2fbd6c33dcaa214b3425dc5e3752330fc
parent3a7798221346a76d0820f9bc28b295b8a16d9d1f (diff)
downloadmate-themes-c05d6caeb37556a607c5c618c7f345b363a441a9.tar.bz2
mate-themes-c05d6caeb37556a607c5c618c7f345b363a441a9.tar.xz
All themes GTK3: do not flash the desktop with a color during theme switching
-rw-r--r--desktop-themes/BlackMATE/gtk-3.0/mate-applications.css8
-rw-r--r--desktop-themes/BlueMenta/gtk-3.0/mate-applications.css7
-rw-r--r--desktop-themes/ContrastHigh/gtk-3.0/mate-applications.css6
-rw-r--r--desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css10
-rw-r--r--desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css8
-rw-r--r--desktop-themes/Menta/gtk-3.0/mate-applications.css7
-rw-r--r--desktop-themes/TraditionalGreen/gtk-3.0/mate-applications.css6
-rw-r--r--desktop-themes/TraditionalOk/gtk-3.0/mate-applications.css6
-rw-r--r--desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css6
9 files changed, 62 insertions, 2 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css b/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css
index 31865c8c..7672c98b 100644
--- a/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css
+++ b/desktop-themes/BlackMATE/gtk-3.0/mate-applications.css
@@ -5,12 +5,18 @@
/**** View ***/
/* background of all views */
-CajaWindow .view {
+CajaNavigationWindow .view {
background-color: shade (@theme_bg_color, 1.08);
color: @theme_fg_color;
border-color: transparent;
}
+/* do not flash the desktop with a color during theme switching */
+CajaDesktopWindow FMDesktopIconView .view {
+ background-color: transparent;
+ background-image: none;
+}
+
.caja-inactive-pane .view {
background-color: shade(@less_dark_color, 1.3);
}
diff --git a/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css b/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css
index 081c1a53..d0673537 100644
--- a/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css
+++ b/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css
@@ -1,6 +1,13 @@
/*********************
* CAJA File manager *
*********************/
+
+/* do not flash the desktop with a color during theme switching */
+CajaDesktopWindow FMDesktopIconView .view {
+ background-color: transparent;
+ background-image: none;
+}
+
/* for breadcrumbs path bar */
.caja-pathbar-button,
diff --git a/desktop-themes/ContrastHigh/gtk-3.0/mate-applications.css b/desktop-themes/ContrastHigh/gtk-3.0/mate-applications.css
index 5af3891d..f188b09b 100644
--- a/desktop-themes/ContrastHigh/gtk-3.0/mate-applications.css
+++ b/desktop-themes/ContrastHigh/gtk-3.0/mate-applications.css
@@ -2,6 +2,12 @@
* Caja *
************/
+/* do not flash the desktop with a color during theme switching */
+CajaDesktopWindow FMDesktopIconView .view {
+ background-color: transparent;
+ background-image: none;
+}
+
.caja-cluebar-label {
color: @theme_selected_fg_color;
font: bold;
diff --git a/desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css b/desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css
index cc963416..27076ccd 100644
--- a/desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css
+++ b/desktop-themes/ContrastHighInverse/gtk-3.0/mate-applications.css
@@ -1,3 +1,13 @@
+/************
+ * Caja *
+ ************/
+
+/* do not flash the desktop with a color during theme switching */
+CajaDesktopWindow FMDesktopIconView .view {
+ background-color: transparent;
+ background-image: none;
+}
+
/**************
* Mate-Panel *
**************/
diff --git a/desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css b/desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css
index f183fe72..9738249a 100644
--- a/desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css
+++ b/desktop-themes/GreenLaguna/gtk-3.0/mate-applications.css
@@ -3,10 +3,16 @@
************/
/* background of all views */
-CajaWindow .view {
+CajaNavigationWindow .view {
background-color: shade(@base_color, 1.04)
}
+/* do not flash the desktop with a color during theme switching */
+CajaDesktopWindow FMDesktopIconView .view {
+ background-color: transparent;
+ background-image: none;
+}
+
/* FIXME, doesn't work */
.caja-inactive-pane .view {
background-color: shade(@theme_bg_color, 0.9);
diff --git a/desktop-themes/Menta/gtk-3.0/mate-applications.css b/desktop-themes/Menta/gtk-3.0/mate-applications.css
index 3b8a9832..d1d60ce6 100644
--- a/desktop-themes/Menta/gtk-3.0/mate-applications.css
+++ b/desktop-themes/Menta/gtk-3.0/mate-applications.css
@@ -1,6 +1,13 @@
/*********************
* CAJA File manager *
*********************/
+
+/* do not flash the desktop with a color during theme switching */
+CajaDesktopWindow FMDesktopIconView .view {
+ background-color: transparent;
+ background-image: none;
+}
+
/* for breadcrumbs path bar */
.caja-pathbar-button,
diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/mate-applications.css b/desktop-themes/TraditionalGreen/gtk-3.0/mate-applications.css
index 30258734..859fbb1f 100644
--- a/desktop-themes/TraditionalGreen/gtk-3.0/mate-applications.css
+++ b/desktop-themes/TraditionalGreen/gtk-3.0/mate-applications.css
@@ -2,6 +2,12 @@
* Caja *
************/
+/* do not flash the desktop with a color during theme switching */
+CajaDesktopWindow FMDesktopIconView .view {
+ background-color: transparent;
+ background-image: none;
+}
+
/* caja sidebar */
CajaWindow FMTreeView .view,
CajaWindow CajaNotesViewer .view,
diff --git a/desktop-themes/TraditionalOk/gtk-3.0/mate-applications.css b/desktop-themes/TraditionalOk/gtk-3.0/mate-applications.css
index 3efad249..accdbafc 100644
--- a/desktop-themes/TraditionalOk/gtk-3.0/mate-applications.css
+++ b/desktop-themes/TraditionalOk/gtk-3.0/mate-applications.css
@@ -2,6 +2,12 @@
* Caja *
************/
+/* do not flash the desktop with a color during theme switching */
+CajaDesktopWindow FMDesktopIconView .view {
+ background-color: transparent;
+ background-image: none;
+}
+
/* caja sidebar */
CajaWindow FMTreeView .view,
CajaWindow CajaNotesViewer .view,
diff --git a/desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css b/desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css
index a667354b..8c361623 100644
--- a/desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css
+++ b/desktop-themes/TraditionalOkTest/gtk-3.0/mate-applications.css
@@ -2,6 +2,12 @@
* Caja *
************/
+/* do not flash the desktop with a color during theme switching */
+CajaDesktopWindow FMDesktopIconView .view {
+ background-color: transparent;
+ background-image: none;
+}
+
/* caja sidebar */
CajaWindow FMTreeView .view,
CajaWindow CajaNotesViewer .view,