diff options
author | raveit65 <[email protected]> | 2016-04-20 16:03:59 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-04-20 16:04:43 +0200 |
commit | 355a7dc4209ab6b0ddfdd5597c99d9a2ae63c406 (patch) | |
tree | fed05a2351234dc83c951b6beda1fbbce78aa3f6 | |
parent | e8be955849664584f1fb697fd904ae9f85945a5e (diff) | |
download | caja-355a7dc4209ab6b0ddfdd5597c99d9a2ae63c406.tar.bz2 caja-355a7dc4209ab6b0ddfdd5597c99d9a2ae63c406.tar.xz |
GTK+3: improve EelEditableLabel settings css file
-rw-r--r-- | data/caja.css | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/data/caja.css b/data/caja.css index 360a4f52..dfbc1c09 100644 --- a/data/caja.css +++ b/data/caja.css @@ -16,8 +16,38 @@ text-shadow: none; } -.caja-desktop EelEditableLabel.entry { +/* EelEditableLabel (icon labels) */ +.caja-desktop.view .entry, +.caja-desktop.view .entry:focus, +.caja-desktop.view .entry:backdrop, +.caja-navigation-window .view .entry, +.caja-navigation-window .view .entry:active, +.caja-navigation-window .view .entry:focus, +.caja-navigation-window .view .entry:backdrop { border-image: none; + border-style: solid; border-width: 1px; + border-color: #000000; + box-shadow: none; + border-radius: 3px; text-shadow: none; + background-image: -gtk-gradient(linear, + left top, left bottom, + from (shade(rgba(255,255,255,1), 0.86)), + color-stop (0.15, shade(rgba(255,255,255,1), 0.96)), + color-stop (0.50, shade(rgba(255,255,255,1), 0.98)), + to (shade(rgba(255,255,255,1), 1.00))); } + +.caja-desktop.view .entry:selected, +.caja-desktop.view .entry:focus:selected, +.caja-desktop.view .entry:backdrop:selected +.caja-navigation-window .view .entry:active, +.caja-navigation-window .view .entry:selected, +.caja-navigation-window .view .entry:focus:selected, +.caja-navigation-window .view .entry:backdrop:selected { + background-color: @theme_selected_bg_color; + color: @theme_selected_fg_color; + text-shadow: none; +} + |