This commit is contained in:
Vince 2021-07-16 10:59:25 +08:00
parent 4aadb89a62
commit 83b57fd473
3 changed files with 11 additions and 3 deletions

View File

@ -4,7 +4,7 @@
# WARNING: Don't use "cd" in this shell, use it in a subshell instead, # WARNING: Don't use "cd" in this shell, use it in a subshell instead,
# for example ( cd blabla && do_blabla ) or $( cd .. && do_blabla ) # for example ( cd blabla && do_blabla ) or $( cd .. && do_blabla )
set -o pipefail set -Eeo pipefail
if [[ ! "${REPO_DIR}" ]]; then if [[ ! "${REPO_DIR}" ]]; then
echo "Please define 'REPODIR' variable"; exit 1 echo "Please define 'REPODIR' variable"; exit 1

View File

@ -347,7 +347,7 @@ menuitem[type="radio"]:not([disabled="true"]):hover .menu-iconic-icon {
list-style-image: url("../icons/drm-symbolic.svg") !important; list-style-image: url("../icons/drm-symbolic.svg") !important;
} }
#reader-mode-button { #reader-mode-button > .urlbar-icon {
list-style-image: url("../icons/reader-mode.svg") !important; list-style-image: url("../icons/reader-mode.svg") !important;
} }
@ -524,7 +524,7 @@ menuitem[type="radio"]:not([disabled="true"]):hover .menu-iconic-icon {
#pageActionButton, #pageActionButton,
#permissions-granted-icon, #permissions-granted-icon,
#tracking-protection-icon-animatable-image, #tracking-protection-icon-animatable-image,
#reader-mode-button, #reader-mode-button > .urlbar-icon,
#star-button:not([starred]), #star-button:not([starred]),
#geo-sharing-icon[sharing], .geo-icon, #geo-sharing-icon[sharing], .geo-icon,
.blocked-permission-icon.popup-icon, .blocked-permission-icon.popup-icon,

View File

@ -19,6 +19,14 @@
background-image: none !important; background-image: none !important;
} }
.tabbrowser-tab:not([visuallyselected="true"], [multiselected]), .tabbrowser-tab:-moz-lwtheme {
color: var(--gnome-tabbar-tab-color) !important;
}
.tabbrowser-tab .tab-background:not([selected=true]) {
color: var(--gnome-tabbar-tab-active-color) !important;
}
.tab-background { .tab-background {
transition: background 200ms !important; transition: background 200ms !important;
} }