tweak exclusion css, include in page

This commit is contained in:
mlange-42 2023-01-18 13:01:43 +01:00
parent 215af5dc1e
commit 83f190bed4
2 changed files with 15 additions and 7 deletions

View File

@ -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;
} }

View File

@ -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}}