Fixes to Tree Style Tabs and addons radio buttons
This commit is contained in:
parent
ed3a56ee3f
commit
1c391fb498
|
@ -636,14 +636,14 @@
|
||||||
background-color: var(--grey-60) !important;
|
background-color: var(--grey-60) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
xul|*.radio-check {
|
*.radio-check {
|
||||||
border: 1px solid var(--grey-50) !important;
|
border: 1px solid var(--grey-50) !important;
|
||||||
background-color: var(--grey-50) !important;
|
background-color: var(--grey-50) !important;
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
xul|*.radio-check[selected] {
|
*.radio-check[selected] {
|
||||||
fill: var(--primary-accent-color) !important;
|
fill: var(--primary-accent-color) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -156,13 +156,13 @@
|
||||||
.service-worker-multi-process {
|
.service-worker-multi-process {
|
||||||
background-color: var(--grey-60) !important;
|
background-color: var(--grey-60) !important;
|
||||||
}
|
}
|
||||||
xul|*.radio-check {
|
*.radio-check {
|
||||||
border: 1px solid var(--grey-50) !important;
|
border: 1px solid var(--grey-50) !important;
|
||||||
background-color: var(--grey-50) !important;
|
background-color: var(--grey-50) !important;
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
}
|
}
|
||||||
xul|*.radio-check[selected] {
|
*.radio-check[selected] {
|
||||||
fill: var(--primary-accent-color) !important;
|
fill: var(--primary-accent-color) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -383,14 +383,14 @@
|
||||||
background-color: var(--grey-60) !important;
|
background-color: var(--grey-60) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
xul|*.radio-check {
|
*.radio-check {
|
||||||
border: 1px solid var(--grey-50) !important;
|
border: 1px solid var(--grey-50) !important;
|
||||||
background-color: var(--grey-50) !important;
|
background-color: var(--grey-50) !important;
|
||||||
background-image: none !important;
|
background-image: none !important;
|
||||||
box-shadow: none !important;
|
box-shadow: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
xul|*.radio-check[selected] {
|
*.radio-check[selected] {
|
||||||
fill: var(--primary-accent-color) !important;
|
fill: var(--primary-accent-color) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,8 +30,12 @@
|
||||||
.tab.active {
|
.tab.active {
|
||||||
background-color: var(--primary-accent-color) !important;
|
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;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,3 +85,7 @@
|
||||||
#all-tabs .tab:not(.active)[data-current-uri*="github.com"] .favicon {
|
#all-tabs .tab:not(.active)[data-current-uri*="github.com"] .favicon {
|
||||||
filter: invert(65%);
|
filter: invert(65%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#tabbar, #background::after, #background {
|
||||||
|
background: var(--primary-dark-color) !important;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue