Skip to content

Commit

Permalink
Merge pull request #31 from PROxZIMA/fix-ff-108
Browse files Browse the repository at this point in the history
Fix ff 108
  • Loading branch information
PROxZIMA authored Dec 23, 2022
2 parents 8229822 + 3c4a257 commit 9c4b679
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 3 deletions.
11 changes: 10 additions & 1 deletion css/popups.css
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ panel[type="autocomplete-richlistbox"] > .autocomplete-richlistbox {
panel[type="arrow"] {
-moz-window-shadow: none !important;
margin: 0 -14px -18px !important;
padding: 0 14px 18px !important;
padding: 1px 14px 18px !important;
}

panel[type="arrow"][side="top"],
Expand Down Expand Up @@ -415,6 +415,11 @@ panelview .toolbarbutton-1,
padding: 0 4px !important;
}

.subviewbutton.unified-extensions-item-action {
min-height: var(--subview-height) !important;
padding: 0 !important;
}

panelview {
background: var(--back-color1) !important;
}
Expand All @@ -436,6 +441,10 @@ menuitem.subviewbutton:not([disabled], :active)[_moz-menuactive],
color: var(--text-color1) !important;
}

toolbarbutton.subviewbutton.unified-extensions-item-action:not([disabled], [open], :active):is(:hover, :focus) {
background: transparent !important;
}

findbar toolbarbutton.tabbable:-moz-focusring,
toolbar:not(#PersonalToolbar) .toolbarbutton-1:-moz-focusring > .toolbarbutton-icon,
toolbar:not(#PersonalToolbar) .toolbarbutton-1:-moz-focusring > .toolbarbutton-text,
Expand Down
2 changes: 1 addition & 1 deletion css/responsiveNavbar.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#navigator-toolbox {
position: fixed !important;
position: relative;
line-height: 0;
/* max-height: var(--tab-min-height) !important;*/
z-index: 2;
Expand Down
10 changes: 9 additions & 1 deletion css/tabbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,19 @@
display: none !important;
}

#tabbrowser-tabs[haspinnedtabs] {
#tabbrowser-tabs {
padding-inline-start: 0 !important;
margin-inline-start: 0 !important;
border-inline-start: 0 !important;
overflow: hidden !important;
}

/*
#tabbrowser-tabs[haspinnedtabs] {
padding-inline-start: 0 !important;
overflow: hidden !important;
} */

#tabbrowser-arrowscrollbox[scrolledtostart="true"]::part(scrollbutton-up),
#tabbrowser-arrowscrollbox[scrolledtoend="true"]::part(scrollbutton-down) {
display: none !important;
Expand Down
9 changes: 9 additions & 0 deletions css/urlbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,13 @@
color: transparent !important;
}

.urlbar-page-action:not([disabled]):hover {
background: transparent !important;
}

.urlbar-icon {
margin-inline: 1px !important;
margin: auto !important;
}

/* Move hamburger menu to the left */
Expand Down Expand Up @@ -314,3 +319,7 @@ toolbarbutton.bookmark-item:hover {
toolbarbutton.bookmark-item:not(.subviewbutton) {
margin-inline: 1px !important;
}

#TabsToolbar .toolbarbutton-1 {
margin: 0 !important;
}
1 change: 1 addition & 0 deletions script/floatingToolbox.uc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
var css = `
#main-window:not([customizing="true"]) #navigator-toolbox {
display: grid;
position: fixed !important;
transition: transform 85ms linear, opacity 85ms linear !important;
transform-origin: top;
transform: rotateX(75deg);
Expand Down

0 comments on commit 9c4b679

Please sign in to comment.