placeholder_support: Make placeholder border transparent

This patch makes the placeholder borders use transparent borders instead
of color derived from your theme. Instead the background-clip is
extended to border-box (which it already was on non-Windows systems)
This commit is contained in:
MrOtherGuy
2023-04-26 05:15:14 +03:00
parent 21750e272b
commit 0b81416657
@@ -58,9 +58,10 @@ See the above repository for updates as well as full license text. */
:root[uidensity="compact"][sizemode="fullscreen"] #window-controls{ height: 32px } :root[uidensity="compact"][sizemode="fullscreen"] #window-controls{ height: 32px }
#nav-bar{ #nav-bar{
border-inline: var(--uc-window-drag-space-pre,0px) solid var(--toolbar-bgcolor); border-inline: var(--uc-window-drag-space-pre,0px) solid transparent;
border-inline-style: solid !important; border-inline-style: solid !important;
border-right-width: calc(var(--uc-window-control-width,0px) + var(--uc-window-drag-space-post,0px)); border-right-width: calc(var(--uc-window-control-width,0px) + var(--uc-window-drag-space-post,0px));
background-clip: border-box !important;
} }
/* Rules for window controls on left layout */ /* Rules for window controls on left layout */