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 936321 Details for
Bug 1114161
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]
Greybird - changes related to gtk+-3.13.[3-7]
Greybird-changes-related-to-gtk+-3.13.[3-7].patch (text/plain), 5.06 KB, created by
poma
on 2014-09-10 20:46:23 UTC
(
hide
)
Description:
Greybird - changes related to gtk+-3.13.[3-7]
Filename:
MIME Type:
Creator:
poma
Created:
2014-09-10 20:46:23 UTC
Size:
5.06 KB
patch
obsolete
> >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. >--- > gtk-3.0/gtk-widgets.css | 93 +++++++++++++++++++++++++++++++++++++++---------- > 1 file changed, 75 insertions(+), 18 deletions(-) > >diff --git a/gtk-3.0/gtk-widgets.css b/gtk-3.0/gtk-widgets.css >index 3428f75..5f4a6d9 100644 >--- a/gtk-3.0/gtk-widgets.css >+++ b/gtk-3.0/gtk-widgets.css >@@ -346,23 +346,73 @@ row:selected:focus { > color: @theme_selected_fg_color; > } > >-/******************* >- * check and radio * >- *******************/ >-.check, >-.radio, >-.check:insensitive, >-.radio:insensitive { >- border-style: none; >- background-color: transparent; >-} >- >-GtkCheckButton:hover, >-GtkCheckButton:active:hover, >-GtkCheckButton:selected, >-GtkCheckButton:selected:focus { >- background-color: shade(@theme_bg_color, 1.05); >-} >+/***************************************************************************************************** >+ * 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 * >@@ -4135,13 +4185,19 @@ GtkBubbleWindow .toolbar { > icon-shadow: 0 1px shade(@titlebar_bg_color, 1.05); > } > >+/**************************************************************************************** >+ * 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-style: none; > border-radius: 4px 4px 0 0; > box-shadow: 0 3px 7px alpha(black, 0.7), > 0 0 0 1px alpha(black, 0.3); > >- /* this is used for the resize cursor area */ >+ * this is used for the resize cursor area > margin: 10px; > } > >@@ -4153,3 +4209,4 @@ GtkBubbleWindow .toolbar { > box-shadow: 0 3px 5px alpha(black, 0.5), > 0 0 0 1px alpha(black, 0.2); > } >+*/ >-- >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 1114161
:
935217
|
936321
|
954603