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.

194 lines
3.3 KiB

3 years ago
.map-view-marker-name {
3 years ago
color: var(--text-normal);
font-size: var(--font-text-size);
font-family: var(--font-text);
3 years ago
}
2 years ago
.map-view-main {
position: relative;
width: 100%;
height: 100%;
}
3 years ago
.map-view-location {
3 years ago
font-weight: bold;
text-decoration: underline;
3 years ago
}
2 years ago
.map-view-graph-controls {
left: 8px;
top: 8px;
padding: 8px 20px 8px 8px;
background-color: var(--background-primary-alt);
max-width: 240px;
border: 1px solid var(--background-modifier-border);
border-radius: 6px;
max-height: calc(100% - 16px);
overflow: auto;
position: absolute;
3 years ago
z-index: 2;
2 years ago
padding: 8px 25px 5px 12px;
3 years ago
}
.graph-control-div {
3 years ago
display: block;
padding-bottom: 5px;
3 years ago
}
.graph-control-content {
3 years ago
display: none;
overflow: hidden;
}
.graph-control-error {
border-color: red !important;
}
.controls-toggle {
display: none;
3 years ago
}
.mv-control-button {
display: inline;
}
3 years ago
.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;
3 years ago
}
3 years ago
.settings-dense-button {
3 years ago
margin-right: 0;
3 years ago
}
.leaflet-container .dark-mode {
filter: brightness(0.6) invert(1) contrast(3) hue-rotate(200deg)
saturate(0.3) brightness(0.7);
}
3 years ago
.newPresetDialogGrid {
3 years ago
display: grid;
grid-row-gap: 10px;
3 years ago
}
.newPresetDialogLine {
3 years ago
display: inline-block;
3 years ago
}
3 years ago
.clusterPreviewIcon {
3 years ago
margin-left: 0 !important;
margin-top: 0 !important;
position: relative !important;
3 years ago
}
.clusterPreviewContainer {
3 years ago
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;
3 years ago
}
2 years ago
.leaflet-marker-icon {
transition: filter 0.1s;
}
.map-view-highlight {
filter: drop-shadow(0 0 10px blue);
}
div.map-view-highlight.marker-cluster {
box-shadow: 0 0 5px blue;
}
.map-view-icon {
margin: 10px;
width: 15px;
height: 15px;
}
.mv-map-control {
margin: 1px;
}
.block-language-mapview {
height: 300px;
}
.markdown-reading-view .graph-control-div {
display: none;
}
.markdown-reading-view .map-view-graph-controls {
padding: 0;
}
@media print {
.map-view-graph-controls {
display: none;
}
.leaflet-control-zoom {
display: none;
}
}