Fix rust version and install a rust version compatible with LLVM 19

Update border radius in zen-browser.js to 8 pixels
Set default width to 250px in ZenStartup.mjs
Adjust overflow and border radius in zen-browser-container.css
Update background color in vertical-tabs.css
This commit is contained in:
mr. M
2024-10-26 19:51:26 +02:00
parent 722ddfb736
commit cde46b77de
6 changed files with 13 additions and 4 deletions

View File

@@ -121,7 +121,7 @@
}
// remove all styles except for the width, since we are xulstoring the complet style list
const width = toolbox.style.width;
const width = toolbox.style.width || '250px';
toolbox.removeAttribute('style');
toolbox.style.width = width;

View File

@@ -6,7 +6,10 @@
position: relative;
box-shadow: 0 0 1px 1px light-dark(rgba(0, 0, 0, 0.1), var(--zen-colors-border));
& .browserContainer,
& browser {
mix-blend-mode: hue;
overflow: hidden;
border-radius: var(--zen-webview-border-radius, var(--zen-border-radius));
}
}

View File

@@ -155,7 +155,7 @@
}
& .tab-background:not(:hover):not([selected]):not([multiselected]) {
--zen-pinned-tabs-bgcolor: rgba(255, 255, 255, 0.075);
--zen-pinned-tabs-bgcolor: rgba(255, 255, 255, 0.12);
@media not (prefers-color-scheme: dark) {
--zen-pinned-tabs-bgcolor: rgba(1, 1, 1, 0.075);
}