Fix themes colors by using SCSS variables (#3376)

* 💄 Use foreground var for code

* 💄 Use submenu var color

* 💄 Use foreground var color for menu

* 🐛 Fix var used in menu
pull/3385/head
Mathieu Brunot 2020-11-30 16:45:22 +01:00 committed by GitHub
parent 617f4f5cb2
commit a742b4b0e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -164,7 +164,7 @@ menu {
&:hover,
&:focus-visible {
my-global-icon {
@include apply-svg-color(var(--mainBackgroundColor));
@include apply-svg-color(var(--menuForegroundColor));
}
}
@ -269,7 +269,7 @@ menu {
a, span[role=button] {
display: inline-block;
text-decoration: none;
color: pvar(--mainBackgroundColor);
color: pvar(--menuForegroundColor);
opacity: $footer-links-base-opacity;
white-space: nowrap;
font-size: 90%;
@ -284,7 +284,7 @@ menu {
height: 1.4rem;
my-global-icon {
@include apply-svg-color(pvar(--mainBackgroundColor));
@include apply-svg-color(pvar(--menuForegroundColor));
display: flex;
width: auto;
@ -298,7 +298,7 @@ menu {
.footer-copyleft small a {
@include disable-default-a-behaviour;
color: pvar(--mainBackgroundColor);
color: pvar(--menuForegroundColor);
opacity: $footer-links-base-opacity - .2;
}
}

View File

@ -105,6 +105,7 @@ label {
code {
background-color: pvar(--greyBackgroundColor);
color: pvar(--greyForegroundColor);
border-radius: 3px;
padding: .2em .4em;
margin: auto .4em;
@ -261,7 +262,7 @@ code {
opacity: 0.6;
&.active {
background-color: #f0f0f0;
background-color: pvar(--submenuColor);
}
&.active, &:hover, &:active, &:focus {