mirror of
https://github.com/zen-browser/desktop.git
synced 2025-10-03 00:18:37 +00:00
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:
@@ -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;
|
||||
|
||||
|
Submodule src/browser/base/content/zen-components updated: b2f80fb7e1...2657049e86
@@ -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));
|
||||
}
|
||||
}
|
||||
|
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user