Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Mar 4, 2023
1 parent 3cf7c8f commit 8116561
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 15 deletions.
22 changes: 17 additions & 5 deletions src/other/firefox/Monterey/parts/popups-contents.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,22 +64,34 @@
}

/* All tabs popover */
.all-tabs-item[selected] {
box-shadow: none !important;
border-left: 3px solid var(--gnome-tabbar-tab-active-border-bottom-color);
border-radius: 0 !important;

.all-tabs-item {
border-left: 3px solid transparent;
}

.all-tabs-item:hover,
.all-tabs-item:active {
.all-tabs-item:active,
.all-tabs-item[selected] {
background: none !important;
padding: 0 !important;
border-radius: 0 !important;
}

.all-tabs-item > .all-tabs-secondary-button {
margin: 0 !important;
}

.all-tabs-item[selected] {
border-image: linear-gradient(
to bottom,
transparent 0,
transparent 35%,
var(--gnome-tabbar-tab-active-border-bottom-color) 35%,
var(--gnome-tabbar-tab-active-border-bottom-color) 65%,
transparent 65%,
transparent 100%) 3;
}

.all-tabs-item > .all-tabs-secondary-button label {
margin: 0 !important;
}
Expand Down
1 change: 0 additions & 1 deletion src/other/firefox/Monterey/parts/popups.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ menupopup, panel,
:is(panel, menupopup)::part(content) {
--panel-border-color: transparent !important;
--arrowpanel-border-color: transparent !important;

}

.panel-arrowcontent {
Expand Down
25 changes: 17 additions & 8 deletions src/other/firefox/WhiteSur/parts/popups-contents.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,25 +64,34 @@
}

/* All tabs popover */
.all-tabs-item[selected] {
box-shadow: none !important;
border-radius: 0 !important;
background: url("../icons/bullet-symbolic.svg") !important;
background-position: left center;
background-size: 14px 14px;
background-repeat: no-repeat;

.all-tabs-item {
border-left: 3px solid transparent;
}

.all-tabs-item:hover,
.all-tabs-item:active {
.all-tabs-item:active,
.all-tabs-item[selected] {
background: none !important;
padding: 0 !important;
border-radius: 0 !important;
}

.all-tabs-item > .all-tabs-secondary-button {
margin: 0 !important;
}

.all-tabs-item[selected] {
border-image: linear-gradient(
to bottom,
transparent 0,
transparent 35%,
var(--gnome-tabbar-tab-active-border-bottom-color) 35%,
var(--gnome-tabbar-tab-active-border-bottom-color) 65%,
transparent 65%,
transparent 100%) 3;
}

.all-tabs-item > .all-tabs-secondary-button label {
margin: 0 !important;
}
Expand Down
2 changes: 1 addition & 1 deletion src/other/firefox/WhiteSur/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

/* Set theme version text in customization panel */
#customization-footer::before {
background: url(icons/icon.svg) no-repeat;
background: url("icons/icon.svg") no-repeat;
background-size: contain;
content: "Firefox WhiteSur theme";
padding: 10px 10px 10px 50px;
Expand Down

0 comments on commit 8116561

Please sign in to comment.