mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-05 19:08:18 +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:
6
.github/workflows/linux-release-build.yml
vendored
6
.github/workflows/linux-release-build.yml
vendored
@@ -96,6 +96,12 @@ jobs:
|
||||
- name: Download firefox source and dependencies
|
||||
run: pnpm surfer download
|
||||
|
||||
- name: Fix rust version
|
||||
run: |
|
||||
# Install a rust version compatible with LLVM 19
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||
source $HOME/.cargo/env
|
||||
|
||||
- name: Import
|
||||
env:
|
||||
SURFER_COMPAT: ${{ matrix.generic == true }}
|
||||
|
@@ -77,7 +77,7 @@ pref('zen.tabs.vertical', true);
|
||||
pref('zen.tabs.vertical.right-side', false);
|
||||
pref('zen.tabs.show-newtab-under', false);
|
||||
pref('zen.theme.accent-color', "#aac7ff");
|
||||
pref('zen.theme.border-radius', 5); // In pixels
|
||||
pref('zen.theme.border-radius', 8); // In pixels
|
||||
pref('zen.theme.content-element-separation', 6); // In pixels
|
||||
pref('zen.theme.toolbar-themed', true);
|
||||
pref('zen.theme.pill-button', false);
|
||||
|
@@ -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