diff options
author | raveit65 <[email protected]> | 2014-05-03 16:17:28 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2014-05-03 16:17:28 +0200 |
commit | 2f3c79eb276e0e59142777dd1ecd69433eccb7a7 (patch) | |
tree | 9d2948977678a67c4a7693f0ea508b20730d46ae /desktop-themes/BlueMenta/gtk-3.0 | |
parent | 2feff2cf0821c03ae2ab5be064e83f22a6c64bc0 (diff) | |
download | mate-themes-2f3c79eb276e0e59142777dd1ecd69433eccb7a7.tar.bz2 mate-themes-2f3c79eb276e0e59142777dd1ecd69433eccb7a7.tar.xz |
BlueMenta GTK3: use current nemo template for adjusting caja
adjust caja sidebar background color
Diffstat (limited to 'desktop-themes/BlueMenta/gtk-3.0')
-rw-r--r-- | desktop-themes/BlueMenta/gtk-3.0/mate-applications.css | 80 |
1 files changed, 73 insertions, 7 deletions
diff --git a/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css b/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css index b10072de..90a8da8c 100644 --- a/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css +++ b/desktop-themes/BlueMenta/gtk-3.0/mate-applications.css @@ -1,14 +1,75 @@ /********************* * CAJA File manager * *********************/ +/* for breadcrumbs path bar */ + +.caja-pathbar-button, +CajaPathbarButton { + background-image: -gtk-gradient(linear, left top, left bottom, + color-stop (0, shade(alpha(@theme_bg_color, 0.8), 1.1)), + color-stop (.3, shade(alpha(@theme_bg_color, 0.8), 1.1)), + color-stop (.7, shade(alpha(@theme_bg_color, 0.8), 0.98)), + color-stop (1, shade(alpha(@theme_bg_color, 0.8), 0.90))); + border-color: #979797; + color: @theme_fg_color; + -CajaPathbarButton-border-radius: 3px; +} + +CajaPathbarButton:active { + background-image: -gtk-gradient(linear, left top, left bottom, + color-stop (0, shade(alpha(@theme_bg_color, 0.8), .8)), + color-stop (.3, shade(alpha(@theme_bg_color, 0.8), .9)), + color-stop (1, shade(alpha(@theme_bg_color, 0.8), 1.0))); +} + +CajaPathbarButton:hover { + background-image: -gtk-gradient(linear, left top, left bottom, + color-stop (0, shade(alpha(@theme_selected_bg_color, 0.8), 1.25)), + color-stop (.3, shade(alpha(@theme_selected_bg_color, 0.8), 1.25)), + color-stop (.7, shade(alpha(@theme_selected_bg_color, 0.8), 0.95)), + color-stop (1, shade(alpha(@theme_selected_bg_color, 0.8), 0.85))); +} + +CajaPathbarButton:active:hover { + background-image: -gtk-gradient(linear, left top, left bottom, + color-stop (0, shade(alpha(@theme_selected_bg_color, 0.8), .80)), + color-stop (.3, shade(alpha(@theme_selected_bg_color, 0.8), .95)), + color-stop (1, shade(alpha(@theme_selected_bg_color, 0.8), 1.25))); +} + + +/* For Places Sidebar diskfull indicators */ + +CajaPlacesTreeView { + -CajaPlacesTreeView-disk-full-bg-color: shade(@theme_bg_color, .65); + -CajaPlacesTreeView-disk-full-fg-color: shade(@theme_selected_bg_color, 1.0); + -CajaPlacesTreeView-disk-full-bar-width: 2px; + -CajaPlacesTreeView-disk-full-bar-radius: 1px; + -CajaPlacesTreeView-disk-full-bottom-padding: 1px; + -CajaPlacesTreeView-disk-full-max-length: 70px; +} + +CajaPlacesTreeView:selected { + -CajaPlacesTreeView-disk-full-bg-color: shade(@theme_bg_color, 2.0); + -CajaPlacesTreeView-disk-full-fg-color: shade(@theme_fg_color, 2.0); +} + +CajaPlacesTreeView:hover { +} + +CajaPlacesTreeView:selected:hover { +} + @define-color cluebar_color shade (@theme_base_color, 0.9); CajaWindow * { - -GtkPaned-handle-size: 1; + -GtkPaned-handle-size: 0; } +/*FIXME normaly this isn't the right entry for adjusting +the sidebar background color*/ CajaWindow .view { - background-color: @theme_base_color; + background-color: shade (@theme_bg_color, 1.08); } CajaWindow .rubberband, @@ -19,25 +80,30 @@ CajaWindow .view.rubberband { /* sidebar */ CajaWindow .sidebar .view { - background-color: @theme_bg_color; + background-color: shade (@theme_bg_color, 1.08); color: @theme_fg_color; - text-shadow: 0 1px shade (shade (@theme_bg_color, 0.95), 1.04); } CajaWindow .sidebar .frame { border-right-width: 1px; border-style: solid; - border-color: shade (@theme_bg_color, 0.82); + border-color: shade (@theme_bg_color, 0.90); + border-left: none; + border-top: none; + border-bottom: none; } CajaWindow .sidebar row:selected { color: @theme_selected_fg_color; - text-shadow: 0 -1px shade (@theme_selected_bg_color, 0.8); } CajaWindow .sidebar row:backdrop:selected { color: @theme_fg_color; - text-shadow: none; + text-shadow: none; +} + +CajaWindow .sidebar row:hover { + background-color: shade (@theme_bg_color, 0.97); } /* desktop mode */ |