2026-05-12 17:49:45 +00:00
|
|
|
.bases-view.bases-view-map {
|
|
|
|
|
padding: 0px;
|
2026-05-12 17:52:54 +00:00
|
|
|
overflow: hidden;
|
2025-10-09 13:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bases-map-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bases-map {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: var(--bases-map-embed-height);
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.map-view-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
.map-search-container {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
|
|
|
}
|
|
|
|
|
.map-canvas-container {
|
|
|
|
|
flex: 1;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
.map-empty-state {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-loading-overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-loading-overlay.fade-out {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.map-tooltip {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: var(--tooltip-x, 0);
|
|
|
|
|
top: var(--tooltip-y, 0);
|
2025-10-15 23:08:37 +00:00
|
|
|
padding: 10px 14px;
|
2025-10-09 13:26:37 +00:00
|
|
|
background: var(--background-primary);
|
|
|
|
|
color: var(--text-normal);
|
2025-10-15 23:08:37 +00:00
|
|
|
border-radius: 6px;
|
2025-10-09 13:26:37 +00:00
|
|
|
pointer-events: none;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
z-index: 1000;
|
2025-10-15 23:08:37 +00:00
|
|
|
font-size: 13px;
|
|
|
|
|
box-shadow: 0 2px 12px rgba(0,0,0,0.4);
|
|
|
|
|
width: max-content;
|
|
|
|
|
max-width: 400px;
|
2025-10-09 13:26:37 +00:00
|
|
|
transition: opacity 0.15s ease;
|
|
|
|
|
|
|
|
|
|
.map-tooltip-property {
|
2025-10-15 23:08:37 +00:00
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: auto 1fr;
|
2025-10-09 13:26:37 +00:00
|
|
|
gap: 8px;
|
|
|
|
|
margin-top: 4px;
|
2025-10-15 23:08:37 +00:00
|
|
|
align-items: baseline;
|
2025-10-09 13:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-tooltip-tags {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-tooltip-property-label {
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
font-size: 12px;
|
2025-10-15 23:08:37 +00:00
|
|
|
white-space: nowrap;
|
2025-10-09 13:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-tooltip-property-value {
|
|
|
|
|
font-size: 12px;
|
2025-10-15 23:08:37 +00:00
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
min-width: 0;
|
2025-10-09 13:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-tooltip-cover-image {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-height: 150px;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-tooltip-title {
|
2025-10-15 23:08:37 +00:00
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
margin-bottom: 2px;
|
2025-10-09 13:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-tooltip-property-container {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-tooltip.visible {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-canvas {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-settings-container {
|
2025-11-04 13:12:14 +00:00
|
|
|
.setting-item-heading + .setting-item-description {
|
|
|
|
|
padding-top: 0px;
|
|
|
|
|
margin-top: 0px;
|
|
|
|
|
}
|
2025-10-09 13:26:37 +00:00
|
|
|
.delete-btn {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
border: none;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.delete-btn:hover {
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spacer {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.draggable-setting {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
margin: 4px 0;
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
cursor: grab;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
transition: opacity 0.2s ease, background 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.draggable-setting.dragging {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.draggable-setting.drag-over {
|
|
|
|
|
background: var(--background-modifier-hover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.drag-handle {
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
cursor: grab;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tag-label {
|
|
|
|
|
min-width: 120px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-input {
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-input::-webkit-color-swatch-wrapper {
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-input::-webkit-color-swatch {
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-btn {
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
min-width: 40px;
|
|
|
|
|
min-height: 30px;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
margin-right: 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tag-customizations-container {
|
|
|
|
|
padding: 10px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
& .map-empty-state {
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
font-style: italic;
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.add-tag-modal {
|
|
|
|
|
.color-icon-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-input {
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-input::-webkit-color-swatch-wrapper {
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.color-input::-webkit-color-swatch {
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-preview {
|
|
|
|
|
width: 40px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
min-width: 40px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-btn {
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-picker-modal {
|
|
|
|
|
.search-container {
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icons-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
|
|
|
|
|
grid-auto-rows: min-content;
|
|
|
|
|
align-content: start;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
height: 400px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.icon-picker-item {
|
|
|
|
|
width: 50px;
|
|
|
|
|
height: 50px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
&.selected {
|
|
|
|
|
border: 2px solid var(--interactive-accent);
|
|
|
|
|
}
|
|
|
|
|
&:hover {
|
|
|
|
|
background: var(--background-modifier-hover);
|
|
|
|
|
}
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: var(--bases-map-height);
|
|
|
|
|
position: relative;
|
2025-11-15 16:38:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bases-timeline-slider {
|
|
|
|
|
position: absolute;
|
2025-11-15 17:09:40 +00:00
|
|
|
top: 6px;
|
|
|
|
|
right: 6px;
|
|
|
|
|
width: 320px;
|
2026-05-12 17:49:45 +00:00
|
|
|
padding: 12px 16px 8px;
|
2025-11-15 16:54:19 +00:00
|
|
|
background: var(--background-primary);
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
2025-11-15 16:38:58 +00:00
|
|
|
z-index: 10;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2025-11-19 00:03:19 +00:00
|
|
|
gap: 0;
|
2025-11-19 00:21:30 +00:00
|
|
|
transition: padding-bottom 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-12 17:49:45 +00:00
|
|
|
.bases-timeline-slider.has-expanded-controls {
|
2025-11-19 00:21:30 +00:00
|
|
|
padding-bottom: 12px;
|
2025-11-15 16:38:58 +00:00
|
|
|
}
|
|
|
|
|
|
2025-11-15 23:18:15 +00:00
|
|
|
.timeline-input-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
2025-11-19 00:03:19 +00:00
|
|
|
margin-bottom: 16px;
|
2025-11-15 23:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
2025-11-15 16:54:19 +00:00
|
|
|
.timeline-date-input {
|
2025-11-15 23:18:15 +00:00
|
|
|
flex: 1;
|
|
|
|
|
padding: 6px 8px;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-granularity-select {
|
|
|
|
|
flex: 1;
|
2025-11-15 16:54:19 +00:00
|
|
|
padding: 6px 8px;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: var(--background-secondary);
|
2025-11-15 16:38:58 +00:00
|
|
|
color: var(--text-normal);
|
2025-11-15 16:54:19 +00:00
|
|
|
font-size: 13px;
|
2025-11-15 23:18:15 +00:00
|
|
|
cursor: pointer;
|
2025-11-15 16:54:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-date-display {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--text-muted);
|
2025-11-15 16:38:58 +00:00
|
|
|
font-weight: 500;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-12 17:49:45 +00:00
|
|
|
.bases-timeline-slider .timeline-slider {
|
|
|
|
|
width: 100%;
|
2025-11-15 16:38:58 +00:00
|
|
|
height: 6px;
|
2026-05-12 17:49:45 +00:00
|
|
|
margin: 0 0 8px;
|
|
|
|
|
padding: 0;
|
2025-11-15 16:38:58 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
|
background: var(--background-modifier-border);
|
|
|
|
|
outline: none;
|
|
|
|
|
-webkit-appearance: none;
|
2025-11-15 17:09:40 +00:00
|
|
|
box-sizing: border-box;
|
2025-11-15 16:38:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-slider::-webkit-slider-thumb {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
appearance: none;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: var(--interactive-accent);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: transform 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-slider::-webkit-slider-thumb:hover {
|
|
|
|
|
transform: scale(1.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-slider::-moz-range-thumb {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: var(--interactive-accent);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: none;
|
|
|
|
|
transition: transform 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-slider::-moz-range-thumb:hover {
|
|
|
|
|
transform: scale(1.2);
|
2025-11-18 23:47:37 +00:00
|
|
|
}
|
|
|
|
|
|
2025-11-18 23:55:18 +00:00
|
|
|
.timeline-controls-toggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-12 17:49:45 +00:00
|
|
|
.bases-timeline-slider .timeline-toggle-button {
|
2025-11-19 00:03:27 +00:00
|
|
|
width: 100%;
|
2025-11-19 00:21:30 +00:00
|
|
|
height: 14px;
|
2025-11-18 23:55:18 +00:00
|
|
|
padding: 0;
|
2025-11-19 00:19:56 +00:00
|
|
|
margin: 0;
|
2025-11-18 23:55:18 +00:00
|
|
|
border: none;
|
2026-05-12 17:49:45 +00:00
|
|
|
background: transparent;
|
2025-11-19 00:19:56 +00:00
|
|
|
color: var(--text-faint);
|
2025-11-18 23:55:18 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
transition: color 0.15s ease;
|
2025-11-19 00:19:56 +00:00
|
|
|
outline: none;
|
2026-05-12 17:49:45 +00:00
|
|
|
box-shadow: none;
|
2025-11-18 23:55:18 +00:00
|
|
|
}
|
|
|
|
|
|
2026-05-12 17:49:45 +00:00
|
|
|
.bases-timeline-slider .timeline-toggle-button:hover {
|
2025-11-19 00:19:56 +00:00
|
|
|
color: var(--text-muted);
|
2026-05-12 17:49:45 +00:00
|
|
|
background: transparent;
|
|
|
|
|
box-shadow: none;
|
2025-11-19 00:19:56 +00:00
|
|
|
}
|
|
|
|
|
|
2026-05-12 17:49:45 +00:00
|
|
|
.bases-timeline-slider .timeline-toggle-button:active {
|
|
|
|
|
background: transparent;
|
|
|
|
|
box-shadow: none;
|
2025-11-18 23:55:18 +00:00
|
|
|
}
|
|
|
|
|
|
2025-11-19 00:03:19 +00:00
|
|
|
.timeline-toggle-button svg {
|
2025-11-19 00:21:30 +00:00
|
|
|
width: 13px;
|
|
|
|
|
height: 13px;
|
2025-11-19 00:03:27 +00:00
|
|
|
transition: transform 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-toggle-button.expanded svg {
|
|
|
|
|
transform: rotate(180deg);
|
2025-11-19 00:03:19 +00:00
|
|
|
}
|
|
|
|
|
|
2025-11-18 23:47:37 +00:00
|
|
|
.timeline-playback-controls {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
align-items: center;
|
2025-11-18 23:55:18 +00:00
|
|
|
max-height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
opacity: 0;
|
2025-11-19 00:03:19 +00:00
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, padding-top 0.3s ease;
|
2025-11-18 23:55:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-playback-controls.expanded {
|
2025-11-19 00:03:19 +00:00
|
|
|
max-height: 100px;
|
2025-11-18 23:55:18 +00:00
|
|
|
opacity: 1;
|
|
|
|
|
margin-top: 8px;
|
2025-11-18 23:47:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-play-button {
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 28px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
transition: background 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-play-button:hover {
|
|
|
|
|
background: var(--background-modifier-hover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-speed-select {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 6px 8px;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
cursor: pointer;
|
2025-11-22 22:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-draggable {
|
|
|
|
|
cursor: move;
|
|
|
|
|
& .dragging {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
}
|
|
|
|
|
& .move {
|
|
|
|
|
bottom: auto;
|
|
|
|
|
right: auto;
|
|
|
|
|
}
|
2025-11-22 22:43:10 +00:00
|
|
|
}
|
|
|
|
|
|
2025-11-22 23:15:46 +00:00
|
|
|
|
|
|
|
|
/* Map search box */
|
|
|
|
|
.bases-map-search-container {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 8px;
|
|
|
|
|
left: 8px;
|
|
|
|
|
width: 280px;
|
|
|
|
|
background: var(--background-primary);
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
|
|
|
z-index: 10;
|
|
|
|
|
padding: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-search-input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
border: 1px solid var(--background-modifier-border);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
background: var(--background-secondary);
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-search-input:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
border-color: var(--interactive-accent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-search-results {
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
max-height: 200px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
background: var(--background-secondary);
|
2025-11-22 23:15:51 +00:00
|
|
|
opacity: 0;
|
|
|
|
|
transform: translateY(-8px);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
transition: opacity 0.2s ease, transform 0.2s ease;
|
2025-11-22 23:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-search-results.visible {
|
2025-11-22 23:15:51 +00:00
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
pointer-events: all;
|
2025-11-22 23:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-search-result-item {
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.map-search-result-item:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-23 22:41:35 +00:00
|
|
|
.map-search-result-item:hover,
|
|
|
|
|
.map-search-result-item.selected {
|
2025-11-22 23:15:46 +00:00
|
|
|
background: var(--background-modifier-hover);
|
2025-10-09 13:26:37 +00:00
|
|
|
}
|