Skip to content

Commit

Permalink
Use variables from core and fix highlight.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Aug 29, 2019
1 parent d2b5599 commit 010e17b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions site/static/docs/4.3/assets/scss/_dark-mode.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
.bd-sidebar .nav > .active > a,
.bd-sidebar .nav > .active:hover > a,
.bd-toc-item.active > .bd-toc-link {
color: #fff;
color: $white;
}
.ds-input {
background-color: rgba(0, 0, 0, .25);
Expand All @@ -65,7 +65,7 @@
color: rgba(255, 255, 255, .75);

&:hover {
color: #fff;
color: $white;
}
}
}
Expand Down Expand Up @@ -135,10 +135,12 @@
color: rgba(255, 255, 255, .5);
}
}
.language-sh::before,
.language-bash::before,
.language-powershell::before {
color: $bd-info;
.chroma {
.language-sh::before,
.language-bash::before,
.language-powershell::before {
color: $bd-info;
}
}

// Examples
Expand Down

0 comments on commit 010e17b

Please sign in to comment.