mirror of
https://github.com/zen-browser/desktop.git
synced 2025-10-09 03:16:36 +00:00
added vertical tabs preference
This commit is contained in:
@@ -1 +1 @@
|
|||||||
export-file
|
run
|
@@ -1,4 +1,6 @@
|
|||||||
{
|
{
|
||||||
"/home/mau/desktop/configs/branding/beta/logo.png": "f889a9d9305437d9749800d4a45dd51882fb4772",
|
"/home/mau/desktop/configs/branding/beta/logo.png": "f889a9d9305437d9749800d4a45dd51882fb4772",
|
||||||
"/home/mau/desktop/configs/branding/beta/MacOSInstaller.svg": "9f1ed2248fbf7b3918957f4580dc49205aedaefd"
|
"/home/mau/desktop/configs/branding/beta/MacOSInstaller.svg": "9f1ed2248fbf7b3918957f4580dc49205aedaefd",
|
||||||
|
"/home/mauro/work/core/configs/branding/beta/logo.png": "f889a9d9305437d9749800d4a45dd51882fb4772",
|
||||||
|
"/home/mauro/work/core/configs/branding/beta/MacOSInstaller.svg": "9f1ed2248fbf7b3918957f4580dc49205aedaefd"
|
||||||
}
|
}
|
@@ -86,6 +86,10 @@ pref('gfx.canvas.accelerated.cache-items', 4096);
|
|||||||
pref('gfx.canvas.accelerated.cache-size', 512);
|
pref('gfx.canvas.accelerated.cache-size', 512);
|
||||||
pref('gfx.content.skia-font-cache-size', 20);
|
pref('gfx.content.skia-font-cache-size', 20);
|
||||||
|
|
||||||
|
// CUSTOM ZEN PREFS
|
||||||
|
|
||||||
|
pref('zen.verticalTabs.enabled', false);
|
||||||
|
|
||||||
// From: https://github.com/yokoffing/Betterfox
|
// From: https://github.com/yokoffing/Betterfox
|
||||||
|
|
||||||
/** DISK CACHE ***/
|
/** DISK CACHE ***/
|
||||||
|
@@ -47,9 +47,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#urlbar:not([extend="true"]) #identity-box.chromeUI #identity-icon-box {
|
#urlbar:not([extend="true"]) #identity-box.chromeUI #identity-icon-box {
|
||||||
border-radius: 2px;
|
border-radius: 20px 10px 10px 20px !important;
|
||||||
border-top-left-radius: 999px !important;
|
|
||||||
border-bottom-left-radius: 999px !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#urlbar .urlbar-page-action,
|
#urlbar .urlbar-page-action,
|
||||||
@@ -61,15 +59,25 @@
|
|||||||
#urlbar:not([extend="true"]) #identity-box #identity-icon-box { position: relative;}
|
#urlbar:not([extend="true"]) #identity-box #identity-icon-box { position: relative;}
|
||||||
|
|
||||||
/* TODO: this does NOT show up! */
|
/* TODO: this does NOT show up! */
|
||||||
#urlbar:not([extend="true"]) #identity-box:not(.chromeUI) #identity-icon-box[role="button"]:not(:hover)::after {
|
#urlbar:not([extend="true"]) #identity-box:not(.chromeUI):not(.localResource) #identity-icon-box::after {
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 50%;
|
||||||
right: -1px;
|
right: -5px;
|
||||||
height: 100%;
|
height: calc(100% - 5px);
|
||||||
width: 1px;
|
width: 1px;
|
||||||
background: var(--zen-dialog-border-color);
|
background: var(--zen-dialog-border-color);
|
||||||
transition: .1s;
|
transition: .1s;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
#urlbar:not([extend="true"]) #identity-box:not(.chromeUI):not(.localResource) #identity-icon-box {
|
||||||
|
margin: 0 5px;
|
||||||
|
padding-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#urlbar:not([extend="true"]) #identity-box:not(.chromeUI):not(.localResource) {
|
||||||
|
padding-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.urlbar-page-action {
|
.urlbar-page-action {
|
||||||
|
Reference in New Issue
Block a user