From 073118601564c55e48da6cbfd0a5b273ab861d3b Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 30 Nov 2024 11:20:12 +0200 Subject: [PATCH] style(next): improve protected indicator in tree --- src/public/stylesheets/theme-next.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/public/stylesheets/theme-next.css b/src/public/stylesheets/theme-next.css index 0618eaace..3fe77a2be 100644 --- a/src/public/stylesheets/theme-next.css +++ b/src/public/stylesheets/theme-next.css @@ -542,6 +542,23 @@ html body #left-pane .quick-search:focus-within .search-button:hover, z-index: -1; } +#left-pane span.fancytree-node.protected > span.fancytree-custom-icon { + position: relative; + filter: unset !important; +} + +#left-pane span.fancytree-node.protected > span.fancytree-custom-icon:after { + position: absolute; + bottom: 0; + right: 0; + font-size: 14px; + content: "\eb4a"; + font-family: "boxicons"; + transform: translateX(25%); + background: var(--left-pane-background-color); + border-radius: 50%; +} + #left-pane .fancytree-expander { opacity: .65; transition: opacity 150ms ease-in;