This commit is contained in:
Pax1601
2023-09-03 16:34:11 +02:00
parent 8490997604
commit bee35f9ee9
13 changed files with 50 additions and 608 deletions

View File

@@ -1,3 +1,4 @@
* {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
@@ -175,8 +176,8 @@ form>div {
padding-left: 20px;
padding-right: 30px;
text-overflow: ellipsis;
max-width: initial;
width: 100%;
width: calc(100%);
}
.ol-select.narrow:not(.ol-select-image)>.ol-select-value {
@@ -1015,13 +1016,41 @@ nav.ol-panel> :last-child {
}
.ol-target-icon {
background-image: url("/resources/theme/images/markers/target.svg");
height: 52px;
pointer-events: none;
width: 52px;
z-index: 9999;
}
.ol-smoke-icon {
background-image: url("/resources/theme/images/markers/smoke.svg");
height: 52px;
pointer-events: none;
width: 52px;
z-index: 9999;
opacity: 0.8;
}
.ol-smoke-icon[data-color="white"] {
fill: white;
}
.ol-smoke-icon[data-color="blue"] {
fill: blue;
}
.ol-smoke-icon[data-color="red"] {
fill: red;
}
.ol-smoke-icon[data-color="green"] {
fill: green;
}
.ol-smoke-icon[data-color="orange"] {
fill: orange;
}
.ol-draw-icon {
background-image: url("/resources/theme/images/markers/draw.svg");
height: 24px;
@@ -1304,6 +1333,10 @@ input[type=number]::-webkit-outer-spin-button {
transform: translateX(calc((var(--width) - var(--height)) * 0.5));
}
.ol-contexmenu-panel {
padding: 20px;
}
.ol-coalition-switch[data-value="false"]>.ol-switch-fill {
background-color: var(--primary-blue);
}