You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

134 lines
2.3 KiB

.map-view-marker-name {
color: var(--text-normal);
font-size: var(--font-text-size);
font-family: var(--font-text);
}
.map-view-location {
font-weight: bold;
text-decoration: underline;
}
.graph-controls {
position: fixed;
z-index: 2;
margin-top: 36px;
padding: 8px 16px 5px 12px;
}
.graph-control-div {
display: block;
padding-bottom: 5px;
}
.graph-control-content {
display: none;
overflow: hidden;
}
.graph-control-error {
border-color: red !important;
}
.controls-toggle {
display: none;
}
.controls-toggle:checked
+ .lbl-triangle
+ .lbl-toggle
+ .graph-control-content {
display: block;
}
.lbl-triangle {
display: inline-block;
position: relative;
top: -1px;
transition: 0.25s;
}
.controls-toggle:checked + .lbl-triangle {
transform: rotate(90deg);
top: 0px;
}
.settings-dense-button {
margin-right: 0;
}
.leaflet-container .dark-mode {
filter: brightness(0.6) invert(1) contrast(3) hue-rotate(200deg)
saturate(0.3) brightness(0.7);
}
.newPresetDialogGrid {
display: grid;
grid-row-gap: 10px;
}
.newPresetDialogLine {
display: inline-block;
}
.clusterPreviewIcon {
margin-left: 0 !important;
margin-top: 0 !important;
position: relative !important;
}
.clusterPreviewContainer {
display: inline-flex;
border-radius: 6px;
line-height: 1.5;
background-color: var(--background-primary);
}
.clusterPreviewContainer .leaflet-marker-icon {
background-color: var(--background-primary);
}
.graph-control-follow-label {
vertical-align: top;
padding-left: 5px;
}
.marker-popup {
border-radius: 6px;
color: var(--text-normal);
font-size: var(--font-text-size);
font-family: var(--font-text);
line-height: 1.5;
background-color: var(--background-primary);
box-shadow: 0 2px 8px var(--background-modifier-box-shadow);
}
/* Disable the default Leaflet shadow because we use the Obsidian theme above */
.marker-popup .leaflet-popup-content-wrapper {
box-shadow: none;
background: none;
color: none;
}
.url-rule-dropdown {
max-width: 7em;
}
.parsing-rule {
padding: 5px;
}
.parsing-rule-line-2 {
text-align: right;
}
.map-search-suggestion {
display: flex;
}
.search-text-div {
display: flex;
align-items: center;
padding-left: 10px;
}