mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-04-23 05:51:05 -07:00
Fix: Compatibility - Remove firefox view border at static separator #531
This commit is contained in:
parent
53213ead34
commit
618729162d
2 changed files with 22 additions and 4 deletions
|
|
@ -177,6 +177,13 @@
|
|||
padding-inline-start: var(--tab-overflow-pinned-tabs-width) !important;
|
||||
margin-inline-start: 0 !important;
|
||||
}
|
||||
@supports -moz-bool-pref("userChrome.tab.static_separator") {
|
||||
#tabbrowser-tabs {
|
||||
border-inline-start: none !important;
|
||||
padding-inline-start: var(--tab-overflow-pinned-tabs-width) !important;
|
||||
margin-inline-start: 0 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*= OS - Compatibility =======================================================*/
|
||||
@supports -moz-bool-pref("userChrome.compatibility.os") {
|
||||
|
|
|
|||
|
|
@ -172,8 +172,19 @@ vbox[part="drop-indicator-bar"] > image[part="drop-indicator"] {
|
|||
}
|
||||
|
||||
/*= Firefox View Border #498 =================================================*/
|
||||
:root:not([privatebrowsingmode=temporary])[firefoxviewhidden] #firefox-view-button + #tabbrowser-tabs {
|
||||
border-inline-start: none !important;
|
||||
padding-inline-start: var(--tab-overflow-pinned-tabs-width) !important;
|
||||
margin-inline-start: 0 !important;
|
||||
@mixin _firefox_view_border_remove() {
|
||||
#tabbrowser-tabs {
|
||||
border-inline-start: none !important;
|
||||
padding-inline-start: var(--tab-overflow-pinned-tabs-width) !important;
|
||||
margin-inline-start: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
:root:not([privatebrowsingmode=temporary])[firefoxviewhidden] #firefox-view-button + {
|
||||
@include _firefox_view_border_remove;
|
||||
}
|
||||
|
||||
@include Option("userChrome.tab.static_separator") {
|
||||
// #531
|
||||
@include _firefox_view_border_remove;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue