Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 936352 Details for
Bug 1140423
Update to the latest git commit d832073 2014-07-20 & catch up gtk3
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
update to git d832073 gtk3 sync
update-to-git-d832073-gtk3-sync.patch (text/plain), 46.36 KB, created by
poma
on 2014-09-10 23:56:21 UTC
(
hide
)
Description:
update to git d832073 gtk3 sync
Filename:
MIME Type:
Creator:
poma
Created:
2014-09-10 23:56:21 UTC
Size:
46.36 KB
patch
obsolete
> >Update to the latest git commit d832073 2014-07-20 & catch up gtk3 > >--- > .gitignore | 1 + > gtk-widgets.css-gtk3-sync.patch | 1181 +++++++++++++++++++++++++++++++++++++++ > mate-themes.spec | 19 +- > sources | 2 +- > 4 files changed, 1196 insertions(+), 7 deletions(-) > create mode 100644 gtk-widgets.css-gtk3-sync.patch > >diff --git a/.gitignore b/.gitignore >index 9d41ef8..56e6654 100644 >--- a/.gitignore >+++ b/.gitignore >@@ -15,3 +15,4 @@ > /mate-themes-1.8.1-git20140304-5a900ef.tar.xz > /mate-themes-1.8.1.tar.xz > /mate-themes-1.9.0.tar.xz >+/mate-themes-1.9.0-git20140720-d832073.tar.xz >diff --git a/gtk-widgets.css-gtk3-sync.patch b/gtk-widgets.css-gtk3-sync.patch >new file mode 100644 >index 0000000..59d9071 >--- /dev/null >+++ b/gtk-widgets.css-gtk3-sync.patch >@@ -0,0 +1,1181 @@ >+ >+Changes probably related to: >+ >+- http://ftp.gnome.org/pub/gnome/sources/gtk+/3.13/gtk+-3.13.3.news >+ Overview of Changes in GTK+ 3.13.2 to 3.13.3 >+ ============================================ >+ >+ ... >+ * Theming: >+ - Use client-side shadows for menus and tooltips >+ >+- http://ftp.gnome.org/pub/GNOME/sources/gtk+/3.13/gtk+-3.13.7.news >+ Overview of Changes in GTK+ 3.13.6 to 3.13.7 >+ ============================================ >+ >+ * To align better with css, button and menuitem subclasses now use a >+ :checked state to indicate their checkedness, instead of :active or >+ :selected. >+ >+--- >+ desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 102 ++++++++++++----- >+ desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css | 96 ++++++++++++---- >+ .../ContrastHigh/gtk-3.0/gtk-widgets.css | 121 +++++++++++++-------- >+ desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css | 95 ++++++++++++---- >+ desktop-themes/Menta/gtk-3.0/gtk-widgets.css | 97 +++++++++++++---- >+ desktop-themes/Shiny/gtk-3.0/gtk-widgets.css | 90 +++++++++++---- >+ .../TraditionalGreen/gtk-3.0/gtk-widgets.css | 101 ++++++++++++----- >+ .../TraditionalOk/gtk-3.0/gtk-widgets.css | 101 ++++++++++++----- >+ .../TraditionalOkTest/gtk-3.0/gtk-widgets.css | 101 ++++++++++++----- >+ 9 files changed, 671 insertions(+), 233 deletions(-) >+ >+diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css >+index fc83903..fc9d06e 100644 >+--- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css >++++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css >+@@ -2061,6 +2061,12 @@ GtkProgressBar.osd.progressbar { >+ color: #747473; >+ } >+ >++/**************************************************************************************** >++ * Give and take related to recent gtk3 development, * >++ * to achieve full size of the icon menu of some of the applications whose notification * >++ * icons appear in the system tray, the "shadow" is disabled. * >++ ****************************************************************************************/ >++/* >+ .window-frame { >+ border-color: @theme_bg_color; >+ border-radius: 7px 7px 0 0; >+@@ -2069,9 +2075,10 @@ GtkProgressBar.osd.progressbar { >+ background-color: @theme_bg_color; >+ box-shadow: 0 0 0 2px @osd_button_shadow, 0 2px 8px 3px @osd_button_shadow; >+ >+- /* this is used for the resize cursor area */ >++ * this is used for the resize cursor area >+ margin: 10px; >+ } >++*/ >+ >+ /**************************** >+ * Suggested action buttons * >+@@ -2337,32 +2344,73 @@ GtkColorSwatch.color-dark:selected:hover { >+ background-image: none; >+ } >+ >+-/*************************** >+- * Radio and Check Buttons * >+- ***************************/ >+-.radio, >+-.check, >+-.radio:selected, >+-.check:selected, >+-.radio:selected:focus, >+-.check:selected:focus, >+-.cell.radio, >+-.cell.check, >+-.cell.radio:selected, >+-.cell.check:selected, >+-.cell.radio:selected:focus, >+-.cell.check:selected:focus { >+- background-color: transparent; >+- border-width: 0px; >+- border-style: none; >+-} >+- >+-.check:hover, >+-.check:selected:hover, >+-.radio:hover, >+-.radio:selected:hover { >+- background-color: transparent; >+-} >++/***************************************************************************************************** >++ * Check and Radio items * >++ * Related to recent gtk3 development, to reveal checkboxes as part of the dialogue * >++ * of some of the applications whose notification icons appear in the system tray * >++ * the reference section of the HighContrast theme is used. * >++ * https://git.gnome.org/browse/gnome-themes-standard/tree/themes/HighContrast/gtk-3.0/gtk.css#n1398 * >++ *****************************************************************************************************/ >++ >++GtkCheckButton.text-button, GtkRadioButton.text-button { >++ padding: 1px; >++ outline-offset: 0; } >++ >++.check { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } >++ .check:hover { >++ color: #7f7f7f; } >++ .check:checked, .check:active { >++ -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); >++ color: #000; } >++ .check:checked:hover, .check:active:hover { >++ color: #7f7f7f; } >++ .check:checked:insensitive, .check:active:insensitive { >++ color: #7f7f7f; } >++ .check:checked:insensitive:backdrop, .check:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .check:checked:backdrop, .check:active:backdrop { >++ color: #000; } >++ .check:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .check:insensitive:backdrop { >++ color: transparent; } >++ .check:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("checkbox-mixed-symbolic"); } >++ .check:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .check:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >++ >++.radio { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("radio-symbolic"); } >++ .radio:hover { >++ color: #7f7f7f; } >++ .radio:checked, .radio:active { >++ -gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); >++ color: #000; } >++ .radio:checked:hover, .radio:active:hover { >++ color: #7f7f7f; } >++ .radio:checked:insensitive, .radio:active:insensitive { >++ color: #7f7f7f; } >++ .radio:checked:insensitive:backdrop, .radio:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .radio:checked:backdrop, .radio:active:backdrop { >++ color: #000; } >++ .radio:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .radio:insensitive:backdrop { >++ color: transparent; } >++ .radio:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("radio-mixed-symbolic"); } >++ .radio:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .radio:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+ /***************** >+ * GtkCheckButton * >+diff --git a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css >+index a2b00f1..e73823e 100644 >+--- a/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css >++++ b/desktop-themes/BlueMenta/gtk-3.0/gtk-widgets.css >+@@ -2220,24 +2220,73 @@ GtkMenuButton .menu { >+ text-shadow: none; >+ } >+ >+-/**************** >+- * Radiobuttons * >+- ****************/ >+- >+-.check, >+-.radio, >+-.check:insensitive, >+-.radio:insensitive { >+- background-color: transparent; >+- border-style: none; >+-} >+- >+-GtkCheckButton:hover, >+-GtkCheckButton:active:hover, >+-GtkCheckButton:selected, >+-GtkCheckButton:selected:focus { >+- background-color: transparent; >+-} >++/***************************************************************************************************** >++ * Check and Radio items * >++ * Related to recent gtk3 development, to reveal checkboxes as part of the dialogue * >++ * of some of the applications whose notification icons appear in the system tray * >++ * the reference section of the HighContrast theme is used. * >++ * https://git.gnome.org/browse/gnome-themes-standard/tree/themes/HighContrast/gtk-3.0/gtk.css#n1398 * >++ *****************************************************************************************************/ >++ >++GtkCheckButton.text-button, GtkRadioButton.text-button { >++ padding: 1px; >++ outline-offset: 0; } >++ >++.check { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } >++ .check:hover { >++ color: #7f7f7f; } >++ .check:checked, .check:active { >++ -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); >++ color: #000; } >++ .check:checked:hover, .check:active:hover { >++ color: #7f7f7f; } >++ .check:checked:insensitive, .check:active:insensitive { >++ color: #7f7f7f; } >++ .check:checked:insensitive:backdrop, .check:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .check:checked:backdrop, .check:active:backdrop { >++ color: #000; } >++ .check:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .check:insensitive:backdrop { >++ color: transparent; } >++ .check:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("checkbox-mixed-symbolic"); } >++ .check:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .check:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >++ >++.radio { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("radio-symbolic"); } >++ .radio:hover { >++ color: #7f7f7f; } >++ .radio:checked, .radio:active { >++ -gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); >++ color: #000; } >++ .radio:checked:hover, .radio:active:hover { >++ color: #7f7f7f; } >++ .radio:checked:insensitive, .radio:active:insensitive { >++ color: #7f7f7f; } >++ .radio:checked:insensitive:backdrop, .radio:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .radio:checked:backdrop, .radio:active:backdrop { >++ color: #000; } >++ .radio:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .radio:insensitive:backdrop { >++ color: transparent; } >++ .radio:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("radio-mixed-symbolic"); } >++ .radio:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .radio:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+ /************ >+ * Toolbars * >+@@ -3671,13 +3720,19 @@ GtkModelButton.button:selected { >+ icon-shadow: none; >+ } >+ >++/**************************************************************************************** >++ * Give and take related to recent gtk3 development, * >++ * to achieve full size of the icon menu of some of the applications whose notification * >++ * icons appear in the system tray, the "shadow" is disabled. * >++ ****************************************************************************************/ >++/* >+ .window-frame { >+ border-radius: 6px 6px 0 0; >+- /* lamefun trick to get rounded borders regardless of CSD use */ >++ * lamefun trick to get rounded borders regardless of CSD use >+ border-width: 0px; >+ box-shadow: 0 0 0 1px @wm_border, 0 2px 8px 3px @wm_shadow; >+ >+- /* this is used for the resize cursor area */ >++ * this is used for the resize cursor area >+ margin: 10px; >+ } >+ >+@@ -3689,4 +3744,5 @@ GtkModelButton.button:selected { >+ .window-frame:backdrop { >+ box-shadow: 0 0 0 1px shade(@wm_border,1.1), 0 2px 5px 1px @wm_shadow; >+ } >++*/ >+ >+diff --git a/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css b/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css >+index 1c9bb5c..2fee4e6 100644 >+--- a/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css >++++ b/desktop-themes/ContrastHigh/gtk-3.0/gtk-widgets.css >+@@ -1004,53 +1004,73 @@ column-header:first-child .button { >+ border-left-width: 0; >+ } >+ >+-/******************* >+- * Checks & Radios * >+- *******************/ >+-.check, >+-.radio { >+- border-width: 1px; >+- border-style: solid; >+- border-color: @theme_check_radio_border; >+- color: @theme_active_color; >+- >+- background-color: @theme_check_radio_bg; >+-} >++/***************************************************************************************************** >++ * Check and Radio items * >++ * Related to recent gtk3 development, to reveal checkboxes as part of the dialogue * >++ * of some of the applications whose notification icons appear in the system tray * >++ * the reference section of the HighContrast theme is used. * >++ * https://git.gnome.org/browse/gnome-themes-standard/tree/themes/HighContrast/gtk-3.0/gtk.css#n1398 * >++ *****************************************************************************************************/ >++ >++GtkCheckButton.text-button, GtkRadioButton.text-button { >++ padding: 1px; >++ outline-offset: 0; } >++ >++.check { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } >++ .check:hover { >++ color: #7f7f7f; } >++ .check:checked, .check:active { >++ -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); >++ color: #000; } >++ .check:checked:hover, .check:active:hover { >++ color: #7f7f7f; } >++ .check:checked:insensitive, .check:active:insensitive { >++ color: #7f7f7f; } >++ .check:checked:insensitive:backdrop, .check:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .check:checked:backdrop, .check:active:backdrop { >++ color: #000; } >++ .check:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .check:insensitive:backdrop { >++ color: transparent; } >++ .check:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("checkbox-mixed-symbolic"); } >++ .check:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .check:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+-.check:insensitive, >+-.radio:insensitive { >+- border-color: @theme_button_insensitive_border; >+- color: @theme_button_insensitive_fg; >+- background-color: @theme_button_insensitive_bg; >+-} >+- >+-.menuitem.check, >+-.menuitem.radio { >+- background-color: transparent; >+- color: transparent; >+- border-color: transparent; >+-} >+- >+-.menuitem.radio:active, >+-.menuitem.check:active, >+-.menuitem.radio:inconsistent, >+-.menuitem.check:inconsistent { >+- color: @theme_active_color; >+-} >+- >+-.menuitem.radio:active:hover, >+-.menuitem.check:active:hover, >+-.menuitem.radio:inconsistent:hover, >+-.menuitem.check:inconsistent:hover { >+- color: @theme_base_color; >+-} >+- >+-.menuitem.radio:active:insensitive, >+-.menuitem.check:active:insensitive, >+-.menuitem.radio:inconsistent:insensitive, >+-.menuitem.check:inconsistent:insensitive { >+- color: @theme_button_insensitive_fg; >+-} >++.radio { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("radio-symbolic"); } >++ .radio:hover { >++ color: #7f7f7f; } >++ .radio:checked, .radio:active { >++ -gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); >++ color: #000; } >++ .radio:checked:hover, .radio:active:hover { >++ color: #7f7f7f; } >++ .radio:checked:insensitive, .radio:active:insensitive { >++ color: #7f7f7f; } >++ .radio:checked:insensitive:backdrop, .radio:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .radio:checked:backdrop, .radio:active:backdrop { >++ color: #000; } >++ .radio:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .radio:insensitive:backdrop { >++ color: transparent; } >++ .radio:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("radio-mixed-symbolic"); } >++ .radio:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .radio:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+ /********* >+ * Views * >+@@ -1214,6 +1234,12 @@ GtkProgressBar.osd.progressbar { >+ color: @theme_base_color; >+ } >+ >++/**************************************************************************************** >++ * Give and take related to recent gtk3 development, * >++ * to achieve full size of the icon menu of some of the applications whose notification * >++ * icons appear in the system tray, the "shadow" is disabled. * >++ ****************************************************************************************/ >++/* >+ .window-frame { >+ border-color: darker(@theme_bg_color); >+ border-radius: 7px 7px 0 0; >+@@ -1222,13 +1248,14 @@ GtkProgressBar.osd.progressbar { >+ >+ box-shadow: 0 2px 8px 3px alpha(black, 0.7); >+ >+- /* this is used for the resize cursor area */ >++ * this is used for the resize cursor area >+ margin: 10px; >+ } >+ >+ .window-frame:backdrop { >+ box-shadow: 0 2px 5px 1px alpha(black, 0.7); >+ } >++*/ >+ >+ /**************** >+ * App-specific * >+diff --git a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css >+index 08ea4f7..7d72b95 100644 >+--- a/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css >++++ b/desktop-themes/GreenLaguna/gtk-3.0/gtk-widgets.css >+@@ -1822,6 +1822,12 @@ GtkProgressBar.osd.progressbar { >+ color: #747473; >+ } >+ >++/**************************************************************************************** >++ * Give and take related to recent gtk3 development, * >++ * to achieve full size of the icon menu of some of the applications whose notification * >++ * icons appear in the system tray, the "shadow" is disabled. * >++ ****************************************************************************************/ >++/* >+ .window-frame { >+ border-color: @theme_bg_color; >+ border-radius: 7px 7px 0 0; >+@@ -1830,9 +1836,10 @@ GtkProgressBar.osd.progressbar { >+ background-color: @theme_bg_color; >+ box-shadow: 0 0 0 2px @osd_button_shadow, 0 2px 8px 3px @osd_button_shadow; >+ >+- /* this is used for the resize cursor area */ >++ * this is used for the resize cursor area >+ margin: 10px; >+ } >++*/ >+ >+ /**************************** >+ * Suggested action buttons * >+@@ -2050,25 +2057,73 @@ GtkColorSwatch:selected:hover { >+ border-color: alpha(black, 0.5); >+ } >+ >+-/*************************** >+- * Radio and Check Buttons * >+- ***************************/ >+-.radio, >+-.check, >+-.radio:selected, >+-.check:selected, >+-.radio:selected:focus, >+-.check:selected:focus, >+-.cell.radio, >+-.cell.check, >+-.cell.radio:selected, >+-.cell.check:selected, >+-.cell.radio:selected:focus, >+-.cell.check:selected:focus { >+- background-color: transparent; >+- border-width: 0px; >+- border-style: none; >+-} >++/***************************************************************************************************** >++ * Check and Radio items * >++ * Related to recent gtk3 development, to reveal checkboxes as part of the dialogue * >++ * of some of the applications whose notification icons appear in the system tray * >++ * the reference section of the HighContrast theme is used. * >++ * https://git.gnome.org/browse/gnome-themes-standard/tree/themes/HighContrast/gtk-3.0/gtk.css#n1398 * >++ *****************************************************************************************************/ >++ >++GtkCheckButton.text-button, GtkRadioButton.text-button { >++ padding: 1px; >++ outline-offset: 0; } >++ >++.check { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } >++ .check:hover { >++ color: #7f7f7f; } >++ .check:checked, .check:active { >++ -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); >++ color: #000; } >++ .check:checked:hover, .check:active:hover { >++ color: #7f7f7f; } >++ .check:checked:insensitive, .check:active:insensitive { >++ color: #7f7f7f; } >++ .check:checked:insensitive:backdrop, .check:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .check:checked:backdrop, .check:active:backdrop { >++ color: #000; } >++ .check:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .check:insensitive:backdrop { >++ color: transparent; } >++ .check:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("checkbox-mixed-symbolic"); } >++ .check:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .check:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >++ >++.radio { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("radio-symbolic"); } >++ .radio:hover { >++ color: #7f7f7f; } >++ .radio:checked, .radio:active { >++ -gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); >++ color: #000; } >++ .radio:checked:hover, .radio:active:hover { >++ color: #7f7f7f; } >++ .radio:checked:insensitive, .radio:active:insensitive { >++ color: #7f7f7f; } >++ .radio:checked:insensitive:backdrop, .radio:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .radio:checked:backdrop, .radio:active:backdrop { >++ color: #000; } >++ .radio:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .radio:insensitive:backdrop { >++ color: transparent; } >++ .radio:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("radio-mixed-symbolic"); } >++ .radio:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .radio:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+ /***************** >+ * GtkCheckButton * >+diff --git a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css >+index b10cc8d..0aa2fe3 100644 >+--- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css >++++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css >+@@ -2220,24 +2220,73 @@ GtkMenuButton .menu { >+ text-shadow: none; >+ } >+ >+-/**************** >+- * Radiobuttons * >+- ****************/ >+- >+-.check, >+-.radio, >+-.check:insensitive, >+-.radio:insensitive { >+- background-color: transparent; >+- border-style: none; >+-} >+- >+-GtkCheckButton:hover, >+-GtkCheckButton:active:hover, >+-GtkCheckButton:selected, >+-GtkCheckButton:selected:focus { >+- background-color: transparent; >+-} >++/***************************************************************************************************** >++ * Check and Radio items * >++ * Related to recent gtk3 development, to reveal checkboxes as part of the dialogue * >++ * of some of the applications whose notification icons appear in the system tray * >++ * the reference section of the HighContrast theme is used. * >++ * https://git.gnome.org/browse/gnome-themes-standard/tree/themes/HighContrast/gtk-3.0/gtk.css#n1398 * >++ *****************************************************************************************************/ >++ >++GtkCheckButton.text-button, GtkRadioButton.text-button { >++ padding: 1px; >++ outline-offset: 0; } >++ >++.check { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } >++ .check:hover { >++ color: #7f7f7f; } >++ .check:checked, .check:active { >++ -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); >++ color: #000; } >++ .check:checked:hover, .check:active:hover { >++ color: #7f7f7f; } >++ .check:checked:insensitive, .check:active:insensitive { >++ color: #7f7f7f; } >++ .check:checked:insensitive:backdrop, .check:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .check:checked:backdrop, .check:active:backdrop { >++ color: #000; } >++ .check:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .check:insensitive:backdrop { >++ color: transparent; } >++ .check:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("checkbox-mixed-symbolic"); } >++ .check:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .check:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >++ >++.radio { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("radio-symbolic"); } >++ .radio:hover { >++ color: #7f7f7f; } >++ .radio:checked, .radio:active { >++ -gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); >++ color: #000; } >++ .radio:checked:hover, .radio:active:hover { >++ color: #7f7f7f; } >++ .radio:checked:insensitive, .radio:active:insensitive { >++ color: #7f7f7f; } >++ .radio:checked:insensitive:backdrop, .radio:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .radio:checked:backdrop, .radio:active:backdrop { >++ color: #000; } >++ .radio:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .radio:insensitive:backdrop { >++ color: transparent; } >++ .radio:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("radio-mixed-symbolic"); } >++ .radio:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .radio:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+ /************ >+ * Toolbars * >+@@ -3674,13 +3723,19 @@ GtkModelButton.button:selected { >+ icon-shadow: none; >+ } >+ >++/**************************************************************************************** >++ * Give and take related to recent gtk3 development, * >++ * to achieve full size of the icon menu of some of the applications whose notification * >++ * icons appear in the system tray, the "shadow" is disabled. * >++ ****************************************************************************************/ >++/* >+ .window-frame { >+ border-radius: 6px 6px 0 0; >+- /* lamefun trick to get rounded borders regardless of CSD use */ >++ * lamefun trick to get rounded borders regardless of CSD use >+ border-width: 0px; >+ box-shadow: 0 0 0 1px @wm_border, 0 2px 8px 3px @wm_shadow; >+ >+- /* this is used for the resize cursor area */ >++ * this is used for the resize cursor area * >+ margin: 10px; >+ } >+ >+@@ -3692,4 +3747,4 @@ GtkModelButton.button:selected { >+ .window-frame:backdrop { >+ box-shadow: 0 0 0 1px shade(@wm_border,1.1), 0 2px 5px 1px @wm_shadow; >+ } >+- >++*/ >+diff --git a/desktop-themes/Shiny/gtk-3.0/gtk-widgets.css b/desktop-themes/Shiny/gtk-3.0/gtk-widgets.css >+index 97c86cf..eb65524 100644 >+--- a/desktop-themes/Shiny/gtk-3.0/gtk-widgets.css >++++ b/desktop-themes/Shiny/gtk-3.0/gtk-widgets.css >+@@ -664,29 +664,73 @@ row:selected:backdrop { >+ /*text-shadow: 0 -1px shade (@selected_bg_color, 0.7);*/ >+ } >+ >+-/******************* >+- * check and radio * >+- *******************/ >+-.check, >+-.radio, >+-.check:insensitive, >+-.radio:insensitive { >+- >+- background-color: transparent; >+- border-style: none; >+- margin: 1px 0; >+-} >+- >+-GtkCheckButton:hover, >+-GtkCheckButton:active:hover, >+-GtkCheckButton:selected, >+-GtkCheckButton:selected:focus { >+- background-color: transparent; >+-} >+- >+-.menu .radio * { >+- box-shadow: none; >+-} >++/***************************************************************************************************** >++ * Check and Radio items * >++ * Related to recent gtk3 development, to reveal checkboxes as part of the dialogue * >++ * of some of the applications whose notification icons appear in the system tray * >++ * the reference section of the HighContrast theme is used. * >++ * https://git.gnome.org/browse/gnome-themes-standard/tree/themes/HighContrast/gtk-3.0/gtk.css#n1398 * >++ *****************************************************************************************************/ >++ >++GtkCheckButton.text-button, GtkRadioButton.text-button { >++ padding: 1px; >++ outline-offset: 0; } >++ >++.check { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } >++ .check:hover { >++ color: #7f7f7f; } >++ .check:checked, .check:active { >++ -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); >++ color: #000; } >++ .check:checked:hover, .check:active:hover { >++ color: #7f7f7f; } >++ .check:checked:insensitive, .check:active:insensitive { >++ color: #7f7f7f; } >++ .check:checked:insensitive:backdrop, .check:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .check:checked:backdrop, .check:active:backdrop { >++ color: #000; } >++ .check:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .check:insensitive:backdrop { >++ color: transparent; } >++ .check:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("checkbox-mixed-symbolic"); } >++ .check:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .check:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >++ >++.radio { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("radio-symbolic"); } >++ .radio:hover { >++ color: #7f7f7f; } >++ .radio:checked, .radio:active { >++ -gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); >++ color: #000; } >++ .radio:checked:hover, .radio:active:hover { >++ color: #7f7f7f; } >++ .radio:checked:insensitive, .radio:active:insensitive { >++ color: #7f7f7f; } >++ .radio:checked:insensitive:backdrop, .radio:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .radio:checked:backdrop, .radio:active:backdrop { >++ color: #000; } >++ .radio:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .radio:insensitive:backdrop { >++ color: transparent; } >++ .radio:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("radio-mixed-symbolic"); } >++ .radio:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .radio:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+ /***************** >+ * column-header * >+diff --git a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css >+index eb2bd72..5fbad4f 100644 >+--- a/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css >++++ b/desktop-themes/TraditionalGreen/gtk-3.0/gtk-widgets.css >+@@ -1240,29 +1240,74 @@ GtkTreeMenu .menuitem *:hover, >+ border-style: solid; >+ } >+ >+-/**************** >+- * Radiobuttons * >+- ****************/ >+- >+-.check, >+-.radio, >+-.check:insensitive, >+-.radio:insensitive { >+- background-color: transparent; >+- border-style: none; >+-} >++/***************************************************************************************************** >++ * Check and Radio items * >++ * Related to recent gtk3 development, to reveal checkboxes as part of the dialogue * >++ * of some of the applications whose notification icons appear in the system tray * >++ * the reference section of the HighContrast theme is used. * >++ * https://git.gnome.org/browse/gnome-themes-standard/tree/themes/HighContrast/gtk-3.0/gtk.css#n1398 * >++ *****************************************************************************************************/ >++ >++GtkCheckButton.text-button, GtkRadioButton.text-button { >++ padding: 1px; >++ outline-offset: 0; } >++ >++.check { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } >++ .check:hover { >++ color: #7f7f7f; } >++ .check:checked, .check:active { >++ -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); >++ color: #000; } >++ .check:checked:hover, .check:active:hover { >++ color: #7f7f7f; } >++ .check:checked:insensitive, .check:active:insensitive { >++ color: #7f7f7f; } >++ .check:checked:insensitive:backdrop, .check:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .check:checked:backdrop, .check:active:backdrop { >++ color: #000; } >++ .check:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .check:insensitive:backdrop { >++ color: transparent; } >++ .check:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("checkbox-mixed-symbolic"); } >++ .check:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .check:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >++ >++.radio { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("radio-symbolic"); } >++ .radio:hover { >++ color: #7f7f7f; } >++ .radio:checked, .radio:active { >++ -gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); >++ color: #000; } >++ .radio:checked:hover, .radio:active:hover { >++ color: #7f7f7f; } >++ .radio:checked:insensitive, .radio:active:insensitive { >++ color: #7f7f7f; } >++ .radio:checked:insensitive:backdrop, .radio:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .radio:checked:backdrop, .radio:active:backdrop { >++ color: #000; } >++ .radio:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .radio:insensitive:backdrop { >++ color: transparent; } >++ .radio:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("radio-mixed-symbolic"); } >++ .radio:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .radio:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+-.check row:selected:insensitive, >+-.check row:selected:focus:insensitive { >+- background-color: transparent; >+-} >+- >+-GtkCheckButton:hover, >+-GtkCheckButton:active:hover, >+-GtkCheckButton:selected, >+-GtkCheckButton:selected:focus { >+- background-color: transparent; >+-} >+ >+ /************ >+ * Toolbars * >+@@ -1848,21 +1893,27 @@ GtkInfoBar:last-child, >+ icon-shadow: none; >+ } >+ >++/**************************************************************************************** >++ * Give and take related to recent gtk3 development, * >++ * to achieve full size of the icon menu of some of the applications whose notification * >++ * icons appear in the system tray, the "shadow" is disabled. * >++ ****************************************************************************************/ >++/* >+ .window-frame { >+ border-width: 1px; >+ border-radius: 7px 7px 0 0; >+ border-style: solid; >+ background-color: @theme_bg_color; >+-/* dummy to avoid resizing mate-appearence-properties if theme changed */ >++ * dummy to avoid resizing mate-appearence-properties if theme changed >+ box-shadow: 0px 0px 0px 0px; >+ margin: 10px; >+ } >+ >+ .window-frame:backdrop { >+-/* dummy to avoid resizing mate-appearence-properties if theme changed */ >++ * dummy to avoid resizing mate-appearence-properties if theme changed >+ box-shadow: 0 0 0 2px @insensitive_text_shadow_color, 0 2px 5px 1px @insensitive_text_shadow_color; >+ } >+- >++*/ >+ /************ >+ * Popovers * >+ ************/ >+diff --git a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css >+index a2bad58..0024390 100644 >+--- a/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css >++++ b/desktop-themes/TraditionalOk/gtk-3.0/gtk-widgets.css >+@@ -1240,29 +1240,73 @@ GtkTreeMenu .menuitem *:hover, >+ border-style: solid; >+ } >+ >+-/**************** >+- * Radiobuttons * >+- ****************/ >+- >+-.check, >+-.radio, >+-.check:insensitive, >+-.radio:insensitive { >+- background-color: transparent; >+- border-style: none; >+-} >+- >+-.check row:selected:insensitive, >+-.check row:selected:focus:insensitive { >+- background-color: transparent; >+-} >+- >+-GtkCheckButton:hover, >+-GtkCheckButton:active:hover, >+-GtkCheckButton:selected, >+-GtkCheckButton:selected:focus { >+- background-color: transparent; >+-} >++/***************************************************************************************************** >++ * Check and Radio items * >++ * Related to recent gtk3 development, to reveal checkboxes as part of the dialogue * >++ * of some of the applications whose notification icons appear in the system tray * >++ * the reference section of the HighContrast theme is used. * >++ * https://git.gnome.org/browse/gnome-themes-standard/tree/themes/HighContrast/gtk-3.0/gtk.css#n1398 * >++ *****************************************************************************************************/ >++ >++GtkCheckButton.text-button, GtkRadioButton.text-button { >++ padding: 1px; >++ outline-offset: 0; } >++ >++.check { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } >++ .check:hover { >++ color: #7f7f7f; } >++ .check:checked, .check:active { >++ -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); >++ color: #000; } >++ .check:checked:hover, .check:active:hover { >++ color: #7f7f7f; } >++ .check:checked:insensitive, .check:active:insensitive { >++ color: #7f7f7f; } >++ .check:checked:insensitive:backdrop, .check:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .check:checked:backdrop, .check:active:backdrop { >++ color: #000; } >++ .check:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .check:insensitive:backdrop { >++ color: transparent; } >++ .check:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("checkbox-mixed-symbolic"); } >++ .check:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .check:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >++ >++.radio { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("radio-symbolic"); } >++ .radio:hover { >++ color: #7f7f7f; } >++ .radio:checked, .radio:active { >++ -gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); >++ color: #000; } >++ .radio:checked:hover, .radio:active:hover { >++ color: #7f7f7f; } >++ .radio:checked:insensitive, .radio:active:insensitive { >++ color: #7f7f7f; } >++ .radio:checked:insensitive:backdrop, .radio:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .radio:checked:backdrop, .radio:active:backdrop { >++ color: #000; } >++ .radio:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .radio:insensitive:backdrop { >++ color: transparent; } >++ .radio:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("radio-mixed-symbolic"); } >++ .radio:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .radio:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+ /************ >+ * Toolbars * >+@@ -1848,20 +1892,27 @@ GtkInfoBar:last-child, >+ icon-shadow: none; >+ } >+ >++/**************************************************************************************** >++ * Give and take related to recent gtk3 development, * >++ * to achieve full size of the icon menu of some of the applications whose notification * >++ * icons appear in the system tray, the "shadow" is disabled. * >++ ****************************************************************************************/ >++/* >+ .window-frame { >+ border-width: 1px; >+ border-radius: 7px 7px 0 0; >+ border-style: solid; >+ background-color: @theme_bg_color; >+-/* dummy to avoid resizing mate-appearence-properties if theme changed */ >++ * dummy to avoid resizing mate-appearence-properties if theme changed >+ box-shadow: 0px 0px 0px 0px; >+ margin: 10px; >+ } >+ >+ .window-frame:backdrop { >+-/* dummy to avoid resizing mate-appearence-properties if theme changed */ >++ * dummy to avoid resizing mate-appearence-properties if theme changed >+ box-shadow: 0 0 0 2px @insensitive_text_shadow_color, 0 2px 5px 1px @insensitive_text_shadow_color; >+ } >++*/ >+ >+ /************ >+ * Popovers * >+diff --git a/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css b/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css >+index c8c1b03..61d1a58 100644 >+--- a/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css >++++ b/desktop-themes/TraditionalOkTest/gtk-3.0/gtk-widgets.css >+@@ -1238,29 +1238,73 @@ GtkTreeMenu .menuitem *:hover, >+ border-style: solid; >+ } >+ >+-/**************** >+- * Radiobuttons * >+- ****************/ >+- >+-.check, >+-.radio, >+-.check:insensitive, >+-.radio:insensitive { >+- background-color: transparent; >+- border-style: none; >+-} >+- >+-.check row:selected:insensitive, >+-.check row:selected:focus:insensitive { >+- background-color: transparent; >+-} >+- >+-GtkCheckButton:hover, >+-GtkCheckButton:active:hover, >+-GtkCheckButton:selected, >+-GtkCheckButton:selected:focus { >+- background-color: transparent; >+-} >++/***************************************************************************************************** >++ * Check and Radio items * >++ * Related to recent gtk3 development, to reveal checkboxes as part of the dialogue * >++ * of some of the applications whose notification icons appear in the system tray * >++ * the reference section of the HighContrast theme is used. * >++ * https://git.gnome.org/browse/gnome-themes-standard/tree/themes/HighContrast/gtk-3.0/gtk.css#n1398 * >++ *****************************************************************************************************/ >++ >++GtkCheckButton.text-button, GtkRadioButton.text-button { >++ padding: 1px; >++ outline-offset: 0; } >++ >++.check { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("checkbox-symbolic"); } >++ .check:hover { >++ color: #7f7f7f; } >++ .check:checked, .check:active { >++ -gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); >++ color: #000; } >++ .check:checked:hover, .check:active:hover { >++ color: #7f7f7f; } >++ .check:checked:insensitive, .check:active:insensitive { >++ color: #7f7f7f; } >++ .check:checked:insensitive:backdrop, .check:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .check:checked:backdrop, .check:active:backdrop { >++ color: #000; } >++ .check:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .check:insensitive:backdrop { >++ color: transparent; } >++ .check:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("checkbox-mixed-symbolic"); } >++ .check:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .check:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >++ >++.radio { >++ color: rgba(0, 0, 0, 0.1); >++ background-image: none; >++ -gtk-icon-source: -gtk-icontheme("radio-symbolic"); } >++ .radio:hover { >++ color: #7f7f7f; } >++ .radio:checked, .radio:active { >++ -gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); >++ color: #000; } >++ .radio:checked:hover, .radio:active:hover { >++ color: #7f7f7f; } >++ .radio:checked:insensitive, .radio:active:insensitive { >++ color: #7f7f7f; } >++ .radio:checked:insensitive:backdrop, .radio:active:insensitive:backdrop { >++ color: #7f7f7f; } >++ .radio:checked:backdrop, .radio:active:backdrop { >++ color: #000; } >++ .radio:insensitive { >++ color: rgba(127, 127, 127, 0.1); } >++ .radio:insensitive:backdrop { >++ color: transparent; } >++ .radio:inconsistent { >++ -gtk-icon-source: -gtk-icontheme("radio-mixed-symbolic"); } >++ .radio:backdrop { >++ color: rgba(0, 0, 0, 0.1); } >++ .radio:backdrop:selected { >++ color: rgba(255, 255, 255, 0.1); } >+ >+ /************ >+ * Toolbars * >+@@ -1846,20 +1890,27 @@ GtkInfoBar:last-child, >+ icon-shadow: none; >+ } >+ >++/**************************************************************************************** >++ * Give and take related to recent gtk3 development, * >++ * to achieve full size of the icon menu of some of the applications whose notification * >++ * icons appear in the system tray, the "shadow" is disabled. * >++ ****************************************************************************************/ >++/* >+ .window-frame { >+ border-width: 1px; >+ border-radius: 7px 7px 0 0; >+ border-style: solid; >+ background-color: @theme_bg_color; >+-/* dummy to avoid resizing mate-appearence-properties if theme changed */ >++ * dummy to avoid resizing mate-appearence-properties if theme changed >+ box-shadow: 0px 0px 0px 0px; >+ margin: 10px; >+ } >+ >+ .window-frame:backdrop { >+-/* dummy to avoid resizing mate-appearence-properties if theme changed */ >++ * dummy to avoid resizing mate-appearence-properties if theme changed >+ box-shadow: 0 0 0 2px @insensitive_text_shadow_color, 0 2px 5px 1px @insensitive_text_shadow_color; >+ } >++*/ >+ >+ /************ >+ * Popovers * >+-- >+2.1.0 >+ >diff --git a/mate-themes.spec b/mate-themes.spec >index 53b5097..7ea7698 100644 >--- a/mate-themes.spec >+++ b/mate-themes.spec >@@ -1,12 +1,12 @@ > # Conditional for release and snapshot builds. Uncomment for release-builds. >-%global rel_build 1 >+#%%global rel_build 1 > > # This is needed, because src-url contains branched part of versioning-scheme. > %global branch 1.9 > > # Settings used for build from snapshots. >-%{!?rel_build:%global commit 5a900efff53ab69e6427c71ecae859c07618774a} >-%{!?rel_build:%global commit_date 20140304} >+%{!?rel_build:%global commit d8320730034702679c23b79ecb5ba002f52661de} >+%{!?rel_build:%global commit_date 20140720} > %{!?rel_build:%global shortcommit %(c=%{commit};echo ${c:0:7})} > %{!?rel_build:%global git_ver git%{commit_date}-%{shortcommit}} > %{!?rel_build:%global git_rel .git%{commit_date}.%{shortcommit}} >@@ -14,8 +14,8 @@ > > Name: mate-themes > Version: %{branch}.0 >-#Release: 0.1%{?git_rel}%{?dist} >-Release: 3%{?dist} >+Release: 4.1%{?git_rel}%{?dist} >+#Release: 4%{?dist} > Summary: MATE Desktop themes > License: GPLv2+ > URL: http://mate-desktop.org >@@ -26,6 +26,8 @@ URL: http://mate-desktop.org > # Source for snapshot-builds. > %{!?rel_build:Source0: http://git.mate-desktop.org/%{name}/snapshot/%{name}-%{commit}.tar.xz#/%{git_tar}} > >+Patch1: gtk-widgets.css-gtk3-sync.patch >+ > BuildRequires: icon-naming-utils > BuildRequires: mate-common > BuildRequires: mate-icon-theme-devel >@@ -49,8 +51,9 @@ MATE Desktop themes > %setup -q%{!?rel_build:n %{name}-%{commit}} > > # needed for git snapshots >-#NOCONFIGURE=1 ./autogen.sh >+NOCONFIGURE=1 ./autogen.sh > >+%patch1 -p1 -b .gtk3-sync > > %build > %configure --enable-test-themes \ >@@ -137,6 +140,10 @@ done > > > %changelog >+* Thu Sep 11 2014 poma <poma@gmail.com> - 1.9.0-4.1.git20140720.d832073 >+- update to the latest git commit d832073 2014-07-20 >+- catch up gtk3 >+ > * Sun Sep 07 2014 Wolfgang Ulbrich <chat-to-me@raveit.de> - 1.9.0-3 > - add missing icons to ContrastHigh theme > >diff --git a/sources b/sources >index 36b159c..f95b0ca 100644 >--- a/sources >+++ b/sources >@@ -1 +1 @@ >-7e4c20e3bd82fa55b2695cb5bc9fb9df mate-themes-1.9.0.tar.xz >+84ea884dcffc7f9caba0f0bd1dbc0ca0 mate-themes-1.9.0-git20140720-d832073.tar.xz >-- >2.1.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1140423
: 936352 |
936353