Files
var-monorepo/apps/dispatch/app/_components/map/mapStyles.css
2025-06-01 12:24:07 -07:00

107 lines
1.9 KiB
CSS

.no-pointer {
cursor: unset;
}
.pointer {
cursor: pointer;
}
.leaflet-tooltip-aircraft {
padding: 0 !important;
border: 0 !important;
border-radius: 0 !important;
color: rgb(254, 254, 254) !important;
left: 35px !important;
top: 40px !important;
border: none !important;
box-shadow: none !important;
}
.leaflet-popup-content-wrapper {
background-color: var(--dark-background);
}
@keyframes fade-in {
from {
right: -20%;
opacity: 0;
}
to {
right: 0;
opacity: 1;
}
}
@keyframes fade-out {
from {
right: 0;
opacity: 1;
}
to {
right: -20%;
opacity: 0;
}
}
.leaflet-tooltip-aircraft:before {
padding: 0 !important;
border: 0 !important;
border-radius: 0 !important;
color: rgb(255, 255, 255) !important;
left: 0px !important;
top: 0px !important;
border: none !important;
box-shadow: none !important;
}
.custom-tooltip-bg {
background: transparent !important;
}
.custom-tooltip-bg:before {
background: transparent !important;
}
.no-pointer {
cursor: unset;
}
.pointer {
cursor: pointer;
}
.leaflet-tooltip-aircraft {
padding: 0 !important;
border: 0 !important;
background-color: var(--surface) !important;
color: var(--on-surface) !important;
}
.leaflet-tooltip-aircraft:before {
border-bottom-color: var(--dark-surface) !important;
}
.modal-box {
position: fixed;
bottom: 50%;
right: 50px;
background-color: rgba(255, 255, 255, 0.75);
border: 5px solid #243671;
border-radius: 8px;
padding: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
z-index: 1000;
max-width: 300px;
word-wrap: break-word;
overflow-wrap: break-word;
text-align: center;
}
.modal-box-close {
position: absolute;
top: 5px;
right: 5px;
font-size: 18px;
cursor: pointer;
color: #243671;
}