From 3112de105eaff8252f3163e3913df2c6a4726b01 Mon Sep 17 00:00:00 2001 From: azivner Date: Sun, 6 Jan 2019 18:58:12 +0100 Subject: [PATCH] fancytree selection/hover colors are shades of gray, border is rounded --- src/public/stylesheets/style.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/public/stylesheets/style.css b/src/public/stylesheets/style.css index 078b5ed44..da5bc9064 100644 --- a/src/public/stylesheets/style.css +++ b/src/public/stylesheets/style.css @@ -131,8 +131,21 @@ span.fancytree-node.fancytree-active-clone:not(.fancytree-active) .fancytree-tit /* By default not focused active tree item is not easily visible, this makes it more visible */ span.fancytree-active:not(.fancytree-focused) .fancytree-title { + background-color: #eee !important; + border-color: #ddd !important; + border-radius: 3px; +} + +span.fancytree-active.fancytree-focused .fancytree-title { background-color: #ddd !important; - border-color: #555 !important; + border-color: #bbb !important; + border-radius: 3px; +} + +.fancytree-plain span.fancytree-node:hover span.fancytree-title { + background-color: #eee !important; + border-color: #bbb !important; + border-radius: 3px; } .ui-autocomplete {