mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-01 06:50:33 -08:00
Fix: Files that are not included
This commit is contained in:
parent
4513eba2b5
commit
2ca68b2ca3
4 changed files with 37 additions and 0 deletions
12
src/padding/_drag_space.scss
Normal file
12
src/padding/_drag_space.scss
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/* for Extra Drag Space */
|
||||
:root {
|
||||
--space-above-tabbar: 8px; /* If the option is not specified, it is equivalent to 0px. */
|
||||
}
|
||||
|
||||
:root[tabsintitlebar][sizemode="normal"] #toolbar-menubar[autohide="true"] {
|
||||
height: calc(var(--tab-min-height) + var(--space-above-tabbar));
|
||||
}
|
||||
:root[sizemode="normal"][chromehidden~="menubar"] #TabsToolbar > .toolbar-items,
|
||||
:root[sizemode="normal"] #toolbar-menubar[autohide="true"][inactive] + #TabsToolbar > .toolbar-items {
|
||||
padding-top: var(--space-above-tabbar) !important;
|
||||
}
|
||||
9
src/padding/_first_tab.scss
Normal file
9
src/padding/_first_tab.scss
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
/* for First Tab Space */
|
||||
:root {
|
||||
--space-left-tabbar: 8px; /* If the option is not specified, it is equivalent to 0px. */
|
||||
}
|
||||
|
||||
:root:not([tabsintitlebar]) #tabbrowser-tabs:not([positionpinnedtabs]),
|
||||
:root:is([sizemode="maximized"], [sizemode="fullscreen"]) #tabbrowser-tabs:not([positionpinnedtabs]) {
|
||||
padding-inline-start: var(--space-left-tabbar) !important;
|
||||
}
|
||||
13
src/padding/_panel.scss
Normal file
13
src/padding/_panel.scss
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
:root {
|
||||
--arrowpanel-menuicon-padding: 8px;
|
||||
--arrowpanel-menuitem-margin: 0 var(--arrowpanel-menuicon-padding) !important; /* Original: 0 8px */
|
||||
--arrowpanel-menuitem-padding: 5px !important; /* Original: 8px */
|
||||
--arrowpanel-padding: 0.8em !important; /* Original: 16px or .cui-widget-panel, .cui-widget-panel::part(arrowcontent) => 4px 0 */
|
||||
}
|
||||
|
||||
:root[uidensity="compact"] {
|
||||
--arrowpanel-menuitem-padding: 3px !important; /* Original: 8px */
|
||||
}
|
||||
:root[uidensity="touch"] {
|
||||
--arrowpanel-menuitem-padding: 8px !important; /* Original: 8px */
|
||||
}
|
||||
3
src/padding/_toolbar_button.scss
Normal file
3
src/padding/_toolbar_button.scss
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
:root[uidensity="compact"] {
|
||||
--toolbarbutton-outer-padding: 2px !important; /* Original: 3px, General is 2px */
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue