Anonymous
Обновление Librewof
Сообщение
Anonymous » 30 июн 2025, 14:12
My userChrome был в порядке, затем один день Librewolf обновился, и Nav-Bar переместился на противоположную сторону панели инструментов. Все остальное кажется таким же, как и раньше. />
Код: Выделить всё
/* Tab layout and behaviour */
#tabbrowser-tabs
.tabbrowser-tab:is([selected]) {
max-width: 250px !important;
min-width: 250px !important;
}
.tab-background:is([selected], [multiselected]) {
box-shadow: none !important;
background-color: var(--accent-color) !important;
border-radius: 0px 0px 0px 0px !important;
border: 1px solid var(--accent-color-alt, var(--accent-color-alt, currentColor)) !important;
}
.tab-background:is([hover=true]) {
background-color: var(--accent-color) !important;
}
.tab-context-line {
height: 1px !important;
border-radius: 0px !important;
margin: 0px 0px !important;
}
:root {
--tab-border-radius: 0px !important;
--tab-block-margin: 0px !important;
}
#urlbar-background {
background: var(--accent-color) !important;
border: none !important;
outline: none !important;
}
#urlbar-input::placeholder { /* Remove URL bar text */
opacity: 0 !important;
}
#urlbar-input-container {
border: none !important;
}
/* If the window is wider than 1000px, use flex layout */
@media (min-width: 1000px) {
#navigator-toolbox {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
/* Url bar */
#nav-bar {
order: 1;
width: var(--navbarWidth);
}
/* Tab bar */
#titlebar {
order: 2;
width: calc(100vw - var(--navbarWidth) - 1px);
}
/* Bookmarks bar */
#PersonalToolbar {
order: 3;
width: 100%;
}
/* Fix urlbar sometimes being misaligned */
:root[uidensity="compact"] #urlbar {
--urlbar-toolbar-height: 39.60px !important;
}
:root[uidensity="touch"] #urlbar {
--urlbar-toolbar-height: 49.00px !important;
}
}
/* ===== Simplifying Interface ===== */
:root {
--navbarWidth: 500px; /* Set width of URL bar */
}
/* Autohide back button when disabled */
#back-button, #forward-button {
transform: scale(1, 1) !important;
transition: margin-left 150ms var(--animation-easing-function), opacity 250ms var(--animation-easing-function), transform 350ms var(--animation-easing-function) !important;
}
#back-button[disabled="true"], #forward-button[disabled="true"] {
margin-left: -34px !important;
opacity: 0 !important;
transform: scale(0.8, 0.8) !important;
pointer-events: none !important;
}
/* Remove UI elements */
#identity-box, /* Site information */
#tracking-protection-icon-container, /* Shield icon */
#page-action-buttons, /* All url bar icons */
#urlbar-go-button, /* Search URL magnifying glass */
#alltabs-button, /* Menu to display all tabs at the end of tabs bar */
.tab-close-button {
display: none !important;
}
#nav-bar {
box-shadow: none !important;
}
#navigator-toolbox {
border-bottom: none !important;
}
/* Remove "padding" left and right from tabs */
.titlebar-spacer {
display: none !important;
}
/* Fix URL bar overlapping elements */
#urlbar-container {
min-width: initial !important;
}
Подробнее, потому что сайт жалуется, и я не уверен, что еще я мог бы добавить к этому
Подробнее здесь:
https://stackoverflow.com/questions/796 ... wrong-side
1751281976
Anonymous
My userChrome был в порядке, затем один день Librewolf обновился, и Nav-Bar переместился на противоположную сторону панели инструментов. Все остальное кажется таким же, как и раньше. /> [code]/* Tab layout and behaviour */ #tabbrowser-tabs .tabbrowser-tab:is([selected]) { max-width: 250px !important; min-width: 250px !important; } .tab-background:is([selected], [multiselected]) { box-shadow: none !important; background-color: var(--accent-color) !important; border-radius: 0px 0px 0px 0px !important; border: 1px solid var(--accent-color-alt, var(--accent-color-alt, currentColor)) !important; } .tab-background:is([hover=true]) { background-color: var(--accent-color) !important; } .tab-context-line { height: 1px !important; border-radius: 0px !important; margin: 0px 0px !important; } :root { --tab-border-radius: 0px !important; --tab-block-margin: 0px !important; } #urlbar-background { background: var(--accent-color) !important; border: none !important; outline: none !important; } #urlbar-input::placeholder { /* Remove URL bar text */ opacity: 0 !important; } #urlbar-input-container { border: none !important; } /* If the window is wider than 1000px, use flex layout */ @media (min-width: 1000px) { #navigator-toolbox { display: flex; flex-direction: row; flex-wrap: wrap; } /* Url bar */ #nav-bar { order: 1; width: var(--navbarWidth); } /* Tab bar */ #titlebar { order: 2; width: calc(100vw - var(--navbarWidth) - 1px); } /* Bookmarks bar */ #PersonalToolbar { order: 3; width: 100%; } /* Fix urlbar sometimes being misaligned */ :root[uidensity="compact"] #urlbar { --urlbar-toolbar-height: 39.60px !important; } :root[uidensity="touch"] #urlbar { --urlbar-toolbar-height: 49.00px !important; } } /* ===== Simplifying Interface ===== */ :root { --navbarWidth: 500px; /* Set width of URL bar */ } /* Autohide back button when disabled */ #back-button, #forward-button { transform: scale(1, 1) !important; transition: margin-left 150ms var(--animation-easing-function), opacity 250ms var(--animation-easing-function), transform 350ms var(--animation-easing-function) !important; } #back-button[disabled="true"], #forward-button[disabled="true"] { margin-left: -34px !important; opacity: 0 !important; transform: scale(0.8, 0.8) !important; pointer-events: none !important; } /* Remove UI elements */ #identity-box, /* Site information */ #tracking-protection-icon-container, /* Shield icon */ #page-action-buttons, /* All url bar icons */ #urlbar-go-button, /* Search URL magnifying glass */ #alltabs-button, /* Menu to display all tabs at the end of tabs bar */ .tab-close-button { display: none !important; } #nav-bar { box-shadow: none !important; } #navigator-toolbox { border-bottom: none !important; } /* Remove "padding" left and right from tabs */ .titlebar-spacer { display: none !important; } /* Fix URL bar overlapping elements */ #urlbar-container { min-width: initial !important; }[/code] Подробнее, потому что сайт жалуется, и я не уверен, что еще я мог бы добавить к этому Подробнее здесь: [url]https://stackoverflow.com/questions/79684673/librewolf-update-moved-userchrome-nav-bar-to-wrong-side[/url]