diff options
author | lukefromdc <[email protected]> | 2016-06-29 19:43:04 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2016-06-29 19:43:04 -0400 |
commit | 83eceefc680ec1a4a78e16c48542840d9d6e3b82 (patch) | |
tree | eb85e30283a84b7c5f49ed62327db4d6e6bec971 /desktop-themes/BlackMATE | |
parent | 36c51df9e7c3fb9aab94a2790d749aa6b81ca9d0 (diff) | |
download | mate-themes-83eceefc680ec1a4a78e16c48542840d9d6e3b82.tar.bz2 mate-themes-83eceefc680ec1a4a78e16c48542840d9d6e3b82.tar.xz |
Fix "paper" widget in print dialogs
In the "General" tab olf a print dialog under the "copies" spinbutton are checkboxes for "collate" and "reverse." The "Reverse" button shows two numbered pieces of paper, but until now it only worked in Adwaita or in GTK 2. Fix this, in GTK 3..20 or later this is a cssnode named simply "paper"
Diffstat (limited to 'desktop-themes/BlackMATE')
-rw-r--r-- | desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css index 1ec3d6a5..3d86d8ba 100644 --- a/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/BlackMATE/gtk-3.0/gtk-widgets.css @@ -3769,6 +3769,18 @@ filechooserwidget.vertical paned.horizontal { border-color: transparent; } +/*************************** + * GtkPrintUnixDialog * + ***************************/ + +printdialog paper{ + border-style: solid; + border-width: 1px; + border-radius: 0px; + border-color: #aaaaaa; + background-color: #ffffff; +} + /************************ * overshoot/undershoot * ************************/ |