1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-08 09:29:58 +02:00

fix: Fixed issues with the XUL rendering, b=(no-bug), c=compact-mode, workspaces

This commit is contained in:
mr. m 2025-05-18 15:19:07 +02:00
parent ccb1bc521c
commit 1a0ce0df7c
No known key found for this signature in database
GPG key ID: 419302196C23B258
5 changed files with 41 additions and 28 deletions

View file

@ -0,0 +1,29 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
&:not(:hover) {
width: min(var(--zen-overflowed-workspace-button-width), 25px);
&::after {
content: '';
position: absolute;
width: 4px;
border-radius: 99px;
height: 4px;
background: color-mix(
in srgb,
var(--zen-primary-color) 10%,
light-dark(rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.4)) 90%
);
left: 50%;
top: 50%;
filter: saturate(140%) brightness(110%) !important;
transform: translate(-50%, -50%);
}
& .zen-workspace-icon {
display: none;
}
}