Davide Passoni 7fe9b0d19f fix: buttons and actions no longer getting stuck
fix: context menu resizes if accordion is opened
feat: added expanding descriptions for context actions
2024-12-11 18:06:59 +01:00

38 lines
860 B
CSS

.airbase-icon {
align-items: center;
cursor: url("/images/cursors/pointer.svg"), auto;
display: flex;
justify-content: center;
position: relative;
width: 40px;
height: 40px;
}
.airbase-icon svg {
width: 40px;
height: 40px;
}
.airbase-icon[data-coalition="red"] svg * {
stroke: var(--unit-background-red);
}
.airbase-icon[data-coalition="blue"] svg * {
stroke: var(--unit-background-blue);
}
.airbase-icon[data-coalition="neutral"] svg * {
stroke: var(--unit-background-neutral);
}
.airbase-icon[data-selected="true"] {
filter: drop-shadow(0px 2px 0px white) drop-shadow(0px -2px 0px white) drop-shadow(2px 0px 0px white) drop-shadow(-2px 0px 0px white);
}
[data-awacs-mode] .airbase-icon svg * {
fill: transparent !important;
}
#map-container .leaflet-airbase-marker.airbase-disable-pointer-events {
pointer-events: none;
}