client: fix different issues

This commit is contained in:
Adorian Doran 2026-02-27 22:45:52 +02:00
parent 945b00030b
commit 676dea33e1
3 changed files with 3 additions and 5 deletions

View File

@ -823,7 +823,7 @@ body[dir=rtl] #left-pane span.fancytree-node.protected > span.fancytree-custom-i
}
#left-pane span.fancytree-node.fancytree-active .tree-item-button:hover,
#left-pane span.fancytree-node.fancytree-active.fancy-tree-selected .fancytree-custom-icon:hover {
#left-pane span.fancytree-node.fancytree-active.fancytree-selected .fancytree-custom-icon:hover {
box-shadow: var(--left-pane-item-selected-action-button-hover-shadow);
}

View File

@ -65,7 +65,6 @@
border: 0;
border-inline-start: unset;
background-color: var(--menu-background-color);
font-weight: 400;
outline: 0;
font-weight: 300;
font-size: 1.4em;

View File

@ -24,7 +24,6 @@ const VARIABLE_WHITELIST = new Set([
"dropdown-border-color",
"dropdown-shadow-opacity",
"menu-padding-size",
"dropdown-backdrop-filter",
"menu-text-color",
"hover-item-background-color",
"hover-item-text-color",
@ -77,7 +76,7 @@ function useStyleInjection(iframeRef: RefObject<HTMLIFrameElement>) {
const style = doc.createElement('style');
style.id = 'client-root-vars';
style.textContent = cssVarsToString(getRootCssVariables());;
style.textContent = cssVarsToString(getRootCssVariables());
styleRef.current = style;
doc.head.appendChild(style);
@ -128,4 +127,4 @@ function injectFont(font: FontDefinition) {
src: url('${font.url}');
}
`;
};
}