Fixes to Tree Style Tabs and addons radio buttons

This commit is contained in:
overdodactyl 2018-02-12 17:02:19 -07:00
parent ed3a56ee3f
commit 1c391fb498
4 changed files with 15 additions and 7 deletions

View File

@ -636,14 +636,14 @@
background-color: var(--grey-60) !important;
}
xul|*.radio-check {
*.radio-check {
border: 1px solid var(--grey-50) !important;
background-color: var(--grey-50) !important;
background-image: none !important;
box-shadow: none !important;
}
xul|*.radio-check[selected] {
*.radio-check[selected] {
fill: var(--primary-accent-color) !important;
}
}

View File

@ -156,13 +156,13 @@
.service-worker-multi-process {
background-color: var(--grey-60) !important;
}
xul|*.radio-check {
*.radio-check {
border: 1px solid var(--grey-50) !important;
background-color: var(--grey-50) !important;
background-image: none !important;
box-shadow: none !important;
}
xul|*.radio-check[selected] {
*.radio-check[selected] {
fill: var(--primary-accent-color) !important;
}

View File

@ -383,14 +383,14 @@
background-color: var(--grey-60) !important;
}
xul|*.radio-check {
*.radio-check {
border: 1px solid var(--grey-50) !important;
background-color: var(--grey-50) !important;
background-image: none !important;
box-shadow: none !important;
}
xul|*.radio-check[selected] {
*.radio-check[selected] {
fill: var(--primary-accent-color) !important;
}
}

View File

@ -30,8 +30,12 @@
.tab.active {
background-color: var(--primary-accent-color) !important;
}
.tab.selected {
background-color: var(--primary-accent-color-dark) !important;
}
.tab.active .label {
.tab.active .label,
.tab.selected .label {
color: white;
}
@ -81,3 +85,7 @@
#all-tabs .tab:not(.active)[data-current-uri*="github.com"] .favicon {
filter: invert(65%);
}
#tabbar, #background::after, #background {
background: var(--primary-dark-color) !important;
}