Aw5739 Update to Angular v15.

This commit is contained in:
2024-01-08 12:33:38 +01:00
parent b0587bc4c3
commit 1988b3f74d
41 changed files with 7612 additions and 2826 deletions

View File

@@ -1,6 +1,3 @@
@import "~bootstrap/scss/bootstrap.scss";
.gps-location {
display:none;
}
@@ -14,7 +11,7 @@
}
.tolerance {
fill: $primary;
fill: var(--bs-primary);
fill-opacity:0.4;
}
@@ -23,20 +20,20 @@
}
.border {
fill: $white;
fill: var(--bs-white);
}
.center {
fill: $primary;
fill: var(--bs-primary);
}
.stop1 {
stop-color: $primary;
stop-color: var(--bs-primary);
stop-opacity:1;
}
.stop2 {
stop-color:$primary;
stop-color:var(--bs-primary);
stop-opacity: 0;
}

View File

@@ -1,11 +1,8 @@
@import "~bootstrap/scss/bootstrap.scss";
.gps-location {
display:block;
width:2.5em;
height:2.5em;
background-color: $body-bg;
background-color: var(--bs-body-bg);
background-size: contain;
margin-top:0.5em;
border-radius: 1.75em;
@@ -17,15 +14,15 @@
}
.pan-to {
fill: $secondary;
fill: var(--bs-secondary);
}
div.gps-location:hover .pan-to {
fill: $white;
fill: var(--bs-white);
}
.pan-to-centered {
fill: $primary;
fill: var(--bs-primary);
}
div.gps-location:hover .pan-to-centered {
@@ -33,5 +30,5 @@ div.gps-location:hover .pan-to-centered {
}
.pan-to.pan-to-disabled {
fill: $gray-300;
fill: var(--bs-gray-300);
}

View File

@@ -1,5 +1,3 @@
@import "~bootstrap/scss/bootstrap.scss";
.compass {
width:2.5em;
height:2.5em;
@@ -13,7 +11,7 @@
#north {
display: none;
fill:$black;
fill:var(--bs-black);
}
#top-l {
@@ -33,23 +31,23 @@
}
div.compass:hover #top-l {
fill:$white;
fill:var(--bs-white);
}
div.compass:hover #top-r {
fill:$gray-300;
fill:var(--bs-gray-300);
}
div.compass:hover #bottom-l {
fill:$gray-300;
fill:var(--bs-gray-300);
}
div.compass:hover #bottom-r {
fill:$white;
fill:var(--bs-white);
}
div.compass:hover #north {
fill:$white;
fill:var(--bs-white);
}
.compass-n {