Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects

Resolve "improve colors readability"

Merged Julie Thezenas requested to merge 54-improve-colors-readability into master
2 files
+ 38
1
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 30
1
@@ -224,6 +224,10 @@ html[data-theme='dark'] .footer__copyright {
color: var(--ifm-color-tonic-three);
}
.menu__link--active:not(.menu__link--sublist):hover {
background-color: var(--ifm-color-frame);
}
/******* Dark theme ********/
/* html[data-theme='dark'] a {
color: var(--ifm-color-frame);
@@ -235,4 +239,29 @@ html[data-theme='dark'] .footer__copyright {
html[data-theme='dark'] .menu__link--active:hover {
color: var(--ifm-color-frame);
}
\ No newline at end of file
transition: 0.3s;
}
html[data-theme='dark'] .menu__link--active:not(.menu__link--sublist) {
color: var(--ifm-color-tonic-one) !important;
font-weight: bolder;
}
html[data-theme='dark'] .menu__link--active:not(.menu__link--sublist):hover {
background-color: var(--ifm-color-tonic-one);
color: var(--ifm-color-frame) !important;
font-weight: bolder;
transition: 0.3s;
}
html[data-theme='dark'] a:hover {
font-weight: bolder;
color: var(--ifm-color-frame);
text-decoration: none;
transition: 0.3s;
}
/*********** page FAQ ***********/
html[data-theme='dark'] .table-of-contents__link:hover code, .table-of-contents__link--active, .table-of-contents__link--active code {
color: var(--ifm-color-frame);
}
Loading