mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
fix: context menu resizes if accordion is opened feat: added expanding descriptions for context actions
38 lines
860 B
CSS
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;
|
|
} |