tweak exclusion css, include in page
This commit is contained in:
parent
215af5dc1e
commit
83f190bed4
|
@ -1,23 +1,30 @@
|
||||||
.light .no-light {
|
.light .no-light {
|
||||||
visibility: hidden;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rust .no-rust {
|
.rust .no-rust {
|
||||||
visibility: hidden;
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.light .no-light-themes,
|
||||||
|
.rust .no-light-themes {
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navy .no-navy {
|
.navy .no-navy {
|
||||||
visibility: hidden;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ayu .no-ayu {
|
.ayu .no-ayu {
|
||||||
visibility: hidden;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.coal .no-coal {
|
.coal .no-coal {
|
||||||
visibility: hidden;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navy, .ayu, .coal .no-dark {
|
.navy .no-dark-themes,
|
||||||
visibility: hidden;
|
.ayu .no-dark-themes,
|
||||||
|
.coal .no-dark-themes {
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
<link rel="stylesheet" href="{{ path_to_root }}css/variables.css">
|
<link rel="stylesheet" href="{{ path_to_root }}css/variables.css">
|
||||||
<link rel="stylesheet" href="{{ path_to_root }}css/general.css">
|
<link rel="stylesheet" href="{{ path_to_root }}css/general.css">
|
||||||
<link rel="stylesheet" href="{{ path_to_root }}css/chrome.css">
|
<link rel="stylesheet" href="{{ path_to_root }}css/chrome.css">
|
||||||
|
<link rel="stylesheet" href="{{ path_to_root }}css/exclude.css">
|
||||||
{{#if print_enable}}
|
{{#if print_enable}}
|
||||||
<link rel="stylesheet" href="{{ path_to_root }}css/print.css" media="print">
|
<link rel="stylesheet" href="{{ path_to_root }}css/print.css" media="print">
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
Loading…
Reference in New Issue