@fmidev/smartmet-alert-client 4.0.5 → 4.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/DescriptionWarning.vue +1 -0
- package/src/components/Legend.vue +2 -0
- package/src/components/MapLarge.vue +17 -5
- package/src/components/Region.vue +1 -0
- package/src/components/Regions.vue +1 -0
package/package.json
CHANGED
|
@@ -1094,9 +1094,19 @@ div.day-map-large
|
|
|
1094
1094
|
|
|
1095
1095
|
.dark-theme .fmi-warnings-popup {
|
|
1096
1096
|
background-color: $dark-popup-background-color;
|
|
1097
|
+
box-shadow: 0 0 0 1px $dark-gray;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.light-gray-theme .fmi-warnings-popup {
|
|
1101
|
+
background-color: $light-popup-background-color;
|
|
1097
1102
|
box-shadow: 0 0 0 1px $light-gray;
|
|
1098
1103
|
}
|
|
1099
1104
|
|
|
1105
|
+
.dark-gray-theme .fmi-warnings-popup {
|
|
1106
|
+
background-color: $dark-popup-background-color;
|
|
1107
|
+
box-shadow: 0 0 0 1px $dark-gray;
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1100
1110
|
:deep(.tooltip.bs-tooltip-top) {
|
|
1101
1111
|
.arrow,
|
|
1102
1112
|
.arrow::before {
|
|
@@ -1430,13 +1440,15 @@ span.region-popup-header-text {
|
|
|
1430
1440
|
.popup-table {
|
|
1431
1441
|
border-top: solid 1px $light-gray;
|
|
1432
1442
|
}
|
|
1433
|
-
#day-map-large-base-popup {
|
|
1434
|
-
box-shadow: 0 0 0 1px $light-gray;
|
|
1435
|
-
}
|
|
1436
1443
|
}
|
|
1437
1444
|
|
|
1438
|
-
.dark-gray-theme
|
|
1439
|
-
|
|
1445
|
+
.dark-gray-theme {
|
|
1446
|
+
.popup-table-heading {
|
|
1447
|
+
background-color: $dark-gray-popup-table-background-color;
|
|
1448
|
+
}
|
|
1449
|
+
.popup-table {
|
|
1450
|
+
border-top: solid 1px $dark-gray;
|
|
1451
|
+
}
|
|
1440
1452
|
}
|
|
1441
1453
|
|
|
1442
1454
|
.popup-table-head {
|