diff options
Diffstat (limited to 'desktop-themes/Menta')
-rw-r--r-- | desktop-themes/Menta/gtk-3.0/gtk-widgets.css | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css index 7566eb63..e5b76004 100644 --- a/desktop-themes/Menta/gtk-3.0/gtk-widgets.css +++ b/desktop-themes/Menta/gtk-3.0/gtk-widgets.css @@ -2208,6 +2208,10 @@ GtkFileChooserButton GtkImage:last-child { color: @internal_element_color; } +GtkFileChooserWidget.vertical GtkPaned.horizontal { + -GtkPaned-handle-size: 4px; +} + /************** * Scrollbars * **************/ @@ -3007,6 +3011,32 @@ GtkMessageDialog { border-style: none; } +/* dialog open */ +.sidebar.list, +.sidebar.list .button { + background-color: @sidebar_bg; +} + +.sidebar-revealer .sidebar-button.image-button.button { + background-color: transparent; + background-image: none; + border-image:none; + box-shadow: none; +} + +.sidebar.list .button { + padding: 4px 8px 4px 6px; +} + +.sidebar.list .button:hover { + background-color: shade (@theme_selected_bg_color, 1.15); + +} + +.sidebar.list .button .sidebar-label { + padding: 0px 8px; +} + .sidebar row:hover { background-color: shade (@theme_selected_bg_color, 1.15); color: shade (@theme_selected_bg_color, 0.35); @@ -3863,7 +3893,7 @@ GtkIconView.cell:hover:focus { color: @theme_fg_color; } -/* ie. pluma open dialog */ +/* ie. filechooser dialog */ .view row:hover { background-color: shade (@theme_selected_bg_color, 1.30); color: shade (@theme_selected_bg_color, 0.35); @@ -3918,7 +3948,9 @@ row:selected:focus:backdrop { GtkTreeView row:nth-child(even), GtkTreeView row:nth-child(odd) { background-color: shade (@theme_base_color, 1.0); - box-shadow: inset 0 -1px 0 0 alpha (@theme_bg_color, 0.4); +/* since gtk+-3.18, better no shadow */ +/* box-shadow: inset 0 -1px 0 0 alpha (@theme_bg_color, 0.4); */ + box-shadow: none; } GtkTreeView row:nth-child(odd):hover, |