mirror of
https://github.com/bramses/bramses-highly-opinionated-vault-2023.git
synced 2025-02-26 07:53:55 +00:00
vault backup: 2022-12-10 00:31:33
This commit is contained in:
24636
.obsidian/plugins/obsidian-map-view/main.js
vendored
Normal file
24636
.obsidian/plugins/obsidian-map-view/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
8
.obsidian/plugins/obsidian-map-view/manifest.json
vendored
Normal file
8
.obsidian/plugins/obsidian-map-view/manifest.json
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"id": "obsidian-map-view",
|
||||
"name": "Map View",
|
||||
"version": "2.2.0",
|
||||
"minAppVersion": "0.15.3",
|
||||
"description": "An interactive map view.",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
159
.obsidian/plugins/obsidian-map-view/styles.css
vendored
Normal file
159
.obsidian/plugins/obsidian-map-view/styles.css
vendored
Normal file
@@ -0,0 +1,159 @@
|
||||
.map-view-marker-name {
|
||||
color: var(--text-normal);
|
||||
font-size: var(--font-text-size);
|
||||
font-family: var(--font-text);
|
||||
}
|
||||
|
||||
.map-view-main {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.map-view-location {
|
||||
font-weight: bold;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.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;
|
||||
z-index: 2;
|
||||
padding: 8px 25px 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;
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
Reference in New Issue
Block a user