]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/global_style.css
Rebundle latest version
[nominatim-ui.git] / src / global_style.css
1 /*
2   Svelte allows to set ':global(rule)' in components which get added to the bundle.css
3   file. https://svelte.dev/docs#style But the rules get added to the top of bundle.css,
4   before we load the Bootstrap CSS rules. We want to have our rules at the end of
5   bundle.css
6 */
7
8 a { text-decoration: none }
9 a:hover { text-decoration: underline; }
10 a.btn:hover { text-decoration: none; }
11
12 html[data-bs-theme=dark] img.mapicon {
13   /* invert the image colors */
14   filter: invert(1) hue-rotate(180deg);
15   background-color: transparent;
16 }