Added dark mode ui for leaflet controls

This commit is contained in:
Alexis
2025-06-21 14:32:23 +02:00
parent ac6558392c
commit bfdd433a5f
9 changed files with 59 additions and 14 deletions

View File

@@ -59,11 +59,11 @@ html {
}
a[href^='http'] {
padding-right: 1.25em;
white-space: nowrap;
orphans: 2;
}
a[href^='http']::after {
position: absolute;
content: url('/icon/square-arrow-out.svg');
display: inline-block;
width: 1em;
@@ -71,6 +71,12 @@ a[href^='http']::after {
margin-left: .25em;
}
.dark {
a[href^='http']::after {
content: url('/icon/square-arrow-out-dark.svg');
}
}
strong {
font-weight: 600;
}