mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
* Print: Remove link color and show link target * Set correct value for `display` not `initial` * Don't reset font-family for select optionn * Remove default stylesheet * Cosmetic changes
37 lines
649 B
CSS
37 lines
649 B
CSS
header .documentBranch::after, header .documentBranch select, .navButtonContainer {
|
|
display: none !important;
|
|
}
|
|
|
|
header .documentBranch span {
|
|
display: inline;
|
|
}
|
|
|
|
nav {
|
|
position: static;
|
|
height: auto;
|
|
/* Override changes made by JS to HTMLElement */
|
|
max-height: none !important;
|
|
}
|
|
|
|
nav .level2.active > a, nav .level3.active > a {
|
|
background: none;
|
|
border-left-color: transparent;
|
|
}
|
|
|
|
nav li.level4 {
|
|
display: list-item;
|
|
}
|
|
|
|
nav .level4 > a::after {
|
|
display: none !important;
|
|
}
|
|
|
|
@media all and (max-width: 50em) {
|
|
nav {
|
|
display: none;
|
|
}
|
|
|
|
html.nav-opened {
|
|
overflow: initial;
|
|
}
|
|
}
|