mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-22 09:31:08 +00:00
Refixing light and dark themes
This commit is contained in:
parent
bbed08e182
commit
33c13608a8
3 changed files with 33 additions and 3 deletions
|
@ -34,7 +34,7 @@
|
||||||
border-bottom-color: $border;
|
border-bottom-color: $border;
|
||||||
border-bottom-style: solid;
|
border-bottom-style: solid;
|
||||||
border-bottom-width: 1px;
|
border-bottom-width: 1px;
|
||||||
color: $link;
|
color: $text;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
margin-bottom: -1px;
|
margin-bottom: -1px;
|
||||||
|
@ -44,12 +44,12 @@
|
||||||
|
|
||||||
.bw-tabs a:hover {
|
.bw-tabs a:hover {
|
||||||
border-bottom-color: transparent;
|
border-bottom-color: transparent;
|
||||||
color: $link
|
color: $text
|
||||||
}
|
}
|
||||||
|
|
||||||
.bw-tabs a.is-active {
|
.bw-tabs a.is-active {
|
||||||
border-bottom-color: transparent;
|
border-bottom-color: transparent;
|
||||||
color: $text
|
color: $link
|
||||||
}
|
}
|
||||||
|
|
||||||
.bw-tabs.is-left {
|
.bw-tabs.is-left {
|
||||||
|
|
|
@ -98,6 +98,22 @@ $family-secondary: $family-sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.tabs li:not(.is-active) a {
|
||||||
|
color: #2e7eb9 !important;
|
||||||
|
}
|
||||||
|
.tabs li:not(.is-active) a:hover {
|
||||||
|
border-bottom-color: #2e7eb9 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs li:not(.is-active) a {
|
||||||
|
color: #2e7eb9 !important;
|
||||||
|
}
|
||||||
|
.tabs li.is-active a {
|
||||||
|
color: #e6e6e6 !important;
|
||||||
|
border-bottom-color: #e6e6e6 !important ;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#qrcode svg {
|
#qrcode svg {
|
||||||
background-color: #a6a6a6;
|
background-color: #a6a6a6;
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,6 +65,20 @@ $family-secondary: $family-sans-serif;
|
||||||
color: $grey !important;
|
color: $grey !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tabs li:not(.is-active) a {
|
||||||
|
color: #3273dc !important;
|
||||||
|
}
|
||||||
|
.tabs li:not(.is-active) a:hover {
|
||||||
|
border-bottom-color: #3273dc !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tabs li:not(.is-active) a {
|
||||||
|
color: #3273dc !important;
|
||||||
|
}
|
||||||
|
.tabs li.is-active a {
|
||||||
|
color: #4a4a4a !important;
|
||||||
|
border-bottom-color: #4a4a4a !important ;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@import "../bookwyrm.scss";
|
@import "../bookwyrm.scss";
|
||||||
|
|
Loading…
Reference in a new issue