@rio-cloud/rio-uikit 0.16.1 → 0.16.2-beta.11
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/.DS_Store +0 -0
- package/ColorScheme.d.ts +4 -0
- package/ColorScheme.js +2 -0
- package/Colors.js +1 -1
- package/TruckLayer.js +1 -1
- package/components/.DS_Store +0 -0
- package/components/applicationHeader/AppMenu.js +6 -3
- package/components/applicationHeader/AppMenuDropdown.js +6 -2
- package/components/applicationHeader/ApplicationHeader.js +10 -5
- package/components/applicationHeader/MobileAppMenu.js +8 -4
- package/components/assetTree/Tree.js +1 -1
- package/components/autosuggest/AutoSuggest.js +2 -2
- package/components/charts/chartHelper.js +1 -1
- package/components/clearableInput/ClearableInput.js +2 -1
- package/components/datepicker/DatePicker.js +8 -4
- package/components/filepicker/FilePicker.js +5 -4
- package/components/map/.DS_Store +0 -0
- package/components/map/assets/icon_map_settings_maptype_night_active.svg +12 -0
- package/components/map/assets/icon_map_settings_maptype_night_inactive.svg +12 -0
- package/components/map/components/.DS_Store +0 -0
- package/components/map/components/Map.js +167 -140
- package/components/map/components/constants.js +1 -0
- package/components/map/components/features/Route.js +6 -7
- package/components/map/components/features/basics/Polyline.js +10 -5
- package/components/map/components/features/layers/RoadRestrictionLayer.js +27 -0
- package/components/map/components/features/layers/TrafficLayer.js +19 -5
- package/components/map/components/features/layers/baselayers/DefaultRasterLayer.js +19 -0
- package/components/map/components/features/layers/baselayers/DefaultVectorLayer.js +15 -0
- package/components/map/components/features/layers/baselayers/FleetStyleLayer.js +13 -17
- package/components/map/components/features/layers/baselayers/NightLayer.js +17 -0
- package/components/map/components/features/layers/baselayers/SatelliteLayer.js +13 -17
- package/components/map/components/features/layers/baselayers/TerrainLayer.js +13 -17
- package/components/map/components/features/layers/baselayers/useBaseLayer.js +53 -0
- package/components/map/components/features/settings/builtinSettings/MapClusterSettings.js +1 -1
- package/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +9 -3
- package/components/map/components/mapUtils.js +44 -8
- package/components/map/icons/MapIcon.js +64 -0
- package/components/mapMarker/ClusterMapMarker.js +2 -2
- package/components/mapMarker/SingleMapMarker.js +8 -2
- package/components/numberControl/NumberControl.js +43 -14
- package/components/numberInput/NumberInput.js +75 -55
- package/components/sidebars/Sidebar.js +2 -2
- package/hooks/useDarkMode.js +30 -0
- package/hooks/useElementSize.js +1 -1
- package/hooks/useFullscreen.js +37 -41
- package/hooks/useHereMap.ts +23 -0
- package/hooks/useMutationObserver.js +38 -0
- package/hooks/useScripts.ts +52 -0
- package/hooks/useScrollPosition.js +72 -0
- package/index.js +6 -1
- package/lib/.DS_Store +0 -0
- package/lib/es/.DS_Store +0 -0
- package/lib/es/ColorScheme.d.ts +4 -0
- package/lib/es/ColorScheme.js +18 -0
- package/lib/es/Colors.js +1 -1
- package/lib/es/TruckLayer.js +2 -2
- package/lib/es/components/.DS_Store +0 -0
- package/lib/es/components/applicationHeader/AppMenu.js +6 -3
- package/lib/es/components/applicationHeader/AppMenuDropdown.js +6 -2
- package/lib/es/components/applicationHeader/ApplicationHeader.js +10 -5
- package/lib/es/components/applicationHeader/MobileAppMenu.js +8 -4
- package/lib/es/components/assetTree/Tree.js +1 -1
- package/lib/es/components/autosuggest/AutoSuggest.js +2 -2
- package/lib/es/components/charts/chartHelper.js +1 -1
- package/lib/es/components/clearableInput/ClearableInput.js +2 -1
- package/lib/es/components/datepicker/DatePicker.js +7 -3
- package/lib/es/components/filepicker/FilePicker.js +5 -4
- package/lib/es/components/map/assets/icon_map_settings_maptype_night_active.svg +12 -0
- package/lib/es/components/map/assets/icon_map_settings_maptype_night_inactive.svg +12 -0
- package/lib/es/components/map/components/Map.js +165 -135
- package/lib/es/components/map/components/constants.js +3 -1
- package/lib/es/components/map/components/features/Route.js +6 -7
- package/lib/es/components/map/components/features/basics/Polyline.js +10 -7
- package/lib/es/components/map/components/features/layers/RoadRestrictionLayer.js +35 -0
- package/lib/es/components/map/components/features/layers/TrafficLayer.js +18 -5
- package/lib/es/components/map/components/features/layers/baselayers/DefaultRasterLayer.js +25 -0
- package/lib/es/components/map/components/features/layers/baselayers/DefaultVectorLayer.js +22 -0
- package/lib/es/components/map/components/features/layers/baselayers/FleetStyleLayer.js +12 -17
- package/lib/es/components/map/components/features/layers/baselayers/NightLayer.js +23 -0
- package/lib/es/components/map/components/features/layers/baselayers/SatelliteLayer.js +12 -17
- package/lib/es/components/map/components/features/layers/baselayers/TerrainLayer.js +12 -17
- package/lib/es/components/map/components/features/layers/baselayers/useBaseLayer.js +61 -0
- package/lib/es/components/map/components/features/settings/builtinSettings/MapClusterSettings.js +1 -1
- package/lib/es/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +7 -1
- package/lib/es/components/map/components/mapUtils.js +44 -10
- package/lib/es/components/map/icons/MapIcon.js +67 -1
- package/lib/es/components/mapMarker/ClusterMapMarker.js +2 -2
- package/lib/es/components/mapMarker/SingleMapMarker.js +8 -2
- package/lib/es/components/numberControl/NumberControl.js +42 -13
- package/lib/es/components/numberInput/NumberInput.js +75 -55
- package/lib/es/components/sidebars/Sidebar.js +2 -2
- package/lib/es/hooks/useDarkMode.js +38 -0
- package/lib/es/hooks/useElementSize.js +1 -1
- package/lib/es/hooks/useFullscreen.js +37 -41
- package/lib/es/hooks/useHereMap.ts +23 -0
- package/lib/es/hooks/useMutationObserver.js +46 -0
- package/lib/es/hooks/useScripts.ts +52 -0
- package/lib/es/hooks/useScrollPosition.js +80 -0
- package/lib/es/index.js +40 -1
- package/lib/es/mapIndex.js +2 -2
- package/lib/es/styles/.DS_Store +0 -0
- package/lib/es/styles/components/Activity.less +9 -10
- package/lib/es/styles/components/ApplicationHeader.less +24 -29
- package/lib/es/styles/components/ApplicationLayout.less +7 -7
- package/lib/es/styles/components/AssetTree.less +30 -28
- package/lib/es/styles/components/AutoSuggest.less +2 -2
- package/lib/es/styles/components/BottomSheet.less +1 -2
- package/lib/es/styles/components/Carousel.less +13 -9
- package/lib/es/styles/components/Checkbox.less +15 -16
- package/lib/es/styles/components/ClearableInput.less +3 -3
- package/lib/es/styles/components/Counter.less +12 -12
- package/lib/es/styles/components/DataTabs.less +2 -2
- package/lib/es/styles/components/DatePicker.less +27 -27
- package/lib/es/styles/components/Dialog.less +15 -11
- package/lib/es/styles/components/Dropdown.less +11 -11
- package/lib/es/styles/components/Expander.less +7 -7
- package/lib/es/styles/components/ListMenu.less +8 -8
- package/lib/es/styles/components/MapHere.less +3 -2
- package/lib/es/styles/components/MapMarker.less +16 -17
- package/lib/es/styles/components/MapSettings.less +5 -5
- package/lib/es/styles/components/NoData.less +1 -1
- package/lib/es/styles/components/Notification.less +12 -12
- package/lib/es/styles/components/RadioButton.less +11 -12
- package/lib/es/styles/components/Resizer.less +1 -1
- package/lib/es/styles/components/Select.less +16 -26
- package/lib/es/styles/components/Sidebar.less +29 -21
- package/lib/es/styles/components/Slider.less +18 -18
- package/lib/es/styles/components/Spinner.less +6 -6
- package/lib/es/styles/components/StatsWidget.less +5 -5
- package/lib/es/styles/components/SteppedProgressBar.less +32 -29
- package/lib/es/styles/components/SupportMarker.less +1 -1
- package/lib/es/styles/components/Switch.less +8 -8
- package/lib/es/styles/components/TableSettingsDialog.less +7 -7
- package/lib/es/styles/components/TableToolbar.less +1 -1
- package/lib/es/styles/components/Tag.less +10 -10
- package/lib/es/styles/components/Timeline.less +3 -3
- package/lib/es/styles/components/Tooltip.less +10 -10
- package/lib/es/styles/design/badges.less +10 -10
- package/lib/es/styles/design/border.less +1 -1
- package/lib/es/styles/design/breadcrumbs.less +2 -2
- package/lib/es/styles/design/button-groups.less +25 -1
- package/lib/es/styles/design/buttons.less +53 -109
- package/lib/es/styles/design/callouts.less +3 -3
- package/lib/es/styles/design/code.less +4 -6
- package/lib/es/styles/design/colors.less +20 -20
- package/lib/es/styles/design/form-input-groups.less +4 -4
- package/lib/es/styles/design/form-inputs.less +33 -31
- package/lib/es/styles/design/images.less +2 -2
- package/lib/es/styles/design/labels.less +11 -11
- package/lib/es/styles/design/list-group.less +14 -12
- package/lib/es/styles/design/navs.less +27 -27
- package/lib/es/styles/design/normalize.less +0 -9
- package/lib/es/styles/design/pagination.less +10 -10
- package/lib/es/styles/design/panels.less +10 -10
- package/lib/es/styles/design/popovers.less +8 -8
- package/lib/es/styles/design/progress-bars.less +8 -8
- package/lib/es/styles/design/shadows.less +14 -7
- package/lib/es/styles/design/tables.less +68 -106
- package/lib/es/styles/design/text.less +5 -19
- package/lib/es/styles/design/theme.less +10 -10
- package/lib/es/styles/design/thumbnails.less +2 -2
- package/lib/es/styles/design/type.less +4 -4
- package/lib/es/styles/design/wells.less +1 -1
- package/lib/es/styles/mapping/color-map.less +76 -75
- package/lib/es/styles/mixins/_imports.less +14 -0
- package/lib/es/styles/mixins/buttons.less +24 -56
- package/lib/es/styles/mixins/forms.less +19 -55
- package/lib/es/styles/mixins/hsl.less +19 -0
- package/lib/es/styles/mixins/panels.less +2 -2
- package/lib/es/styles/print/print.less +7 -7
- package/lib/es/styles/rio-uikit-core.less +2 -2
- package/lib/es/styles/rio-uikit-print-utilities.less +2 -2
- package/lib/es/styles/rio-uikit-responsive-utilities.less +2 -2
- package/lib/es/styles/variables/_index.less +196 -0
- package/lib/es/styles/variables/colors.json +67 -0
- package/lib/es/styles/variables/concated_css_variables.less +66 -0
- package/lib/es/styles/variables/dark_colors.less +88 -0
- package/lib/es/styles/variables/dark_css_variables.less +28 -0
- package/lib/es/styles/variables/dark_css_variables_map.less +96 -0
- package/lib/es/styles/variables/light_colors.less +92 -0
- package/lib/es/styles/variables/light_css_variables.less +17 -0
- package/lib/es/styles/variables/light_css_variables_map.less +100 -0
- package/lib/es/styles/variables/screens.less +7 -0
- package/lib/es/styles/variables/text.less +23 -0
- package/lib/es/themes/.DS_Store +0 -0
- package/lib/es/themes/BuyButton/styles/rio-buyButton.less +13 -8
- package/lib/es/themes/MAN/styles/man-uikit.less +3 -0
- package/lib/es/themes/SCANIA/styles/scania-uikit.less +3 -0
- package/lib/es/themes/Volkswagen/styles/vw-uikit.less +21 -30
- package/lib/es/themes/Website/styles/rio-website.less +154 -124
- package/lib/es/themes/Xmas/styles/rio-xmas.less +59 -29
- package/lib/es/types.ts +30 -5
- package/lib/es/useDarkMode.d.ts +4 -0
- package/lib/es/useDarkMode.js +13 -0
- package/lib/es/useMutationObserver.d.ts +4 -0
- package/lib/es/useMutationObserver.js +13 -0
- package/lib/es/useScrollPosition.d.ts +4 -0
- package/lib/es/useScrollPosition.js +13 -0
- package/lib/es/utils/colorScheme.js +69 -0
- package/lib/es/utils/init.js +34 -34
- package/lib/es/version.json +1 -1
- package/mapIndex.js +1 -1
- package/package.json +34 -33
- package/styles/.DS_Store +0 -0
- package/styles/components/Activity.less +9 -10
- package/styles/components/ApplicationHeader.less +24 -29
- package/styles/components/ApplicationLayout.less +7 -7
- package/styles/components/AssetTree.less +30 -28
- package/styles/components/AutoSuggest.less +2 -2
- package/styles/components/BottomSheet.less +1 -2
- package/styles/components/Carousel.less +13 -9
- package/styles/components/Checkbox.less +15 -16
- package/styles/components/ClearableInput.less +3 -3
- package/styles/components/Counter.less +12 -12
- package/styles/components/DataTabs.less +2 -2
- package/styles/components/DatePicker.less +27 -27
- package/styles/components/Dialog.less +15 -11
- package/styles/components/Dropdown.less +11 -11
- package/styles/components/Expander.less +7 -7
- package/styles/components/ListMenu.less +8 -8
- package/styles/components/MapHere.less +3 -2
- package/styles/components/MapMarker.less +16 -17
- package/styles/components/MapSettings.less +5 -5
- package/styles/components/NoData.less +1 -1
- package/styles/components/Notification.less +12 -12
- package/styles/components/RadioButton.less +11 -12
- package/styles/components/Resizer.less +1 -1
- package/styles/components/Select.less +16 -26
- package/styles/components/Sidebar.less +29 -21
- package/styles/components/Slider.less +18 -18
- package/styles/components/Spinner.less +6 -6
- package/styles/components/StatsWidget.less +5 -5
- package/styles/components/SteppedProgressBar.less +32 -29
- package/styles/components/SupportMarker.less +1 -1
- package/styles/components/Switch.less +8 -8
- package/styles/components/TableSettingsDialog.less +7 -7
- package/styles/components/TableToolbar.less +1 -1
- package/styles/components/Tag.less +10 -10
- package/styles/components/Timeline.less +3 -3
- package/styles/components/Tooltip.less +10 -10
- package/styles/design/badges.less +10 -10
- package/styles/design/border.less +1 -1
- package/styles/design/breadcrumbs.less +2 -2
- package/styles/design/button-groups.less +25 -1
- package/styles/design/buttons.less +53 -109
- package/styles/design/callouts.less +3 -3
- package/styles/design/code.less +4 -6
- package/styles/design/colors.less +20 -20
- package/styles/design/form-input-groups.less +4 -4
- package/styles/design/form-inputs.less +33 -31
- package/styles/design/images.less +2 -2
- package/styles/design/labels.less +11 -11
- package/styles/design/list-group.less +14 -12
- package/styles/design/navs.less +27 -27
- package/styles/design/normalize.less +0 -9
- package/styles/design/pagination.less +10 -10
- package/styles/design/panels.less +10 -10
- package/styles/design/popovers.less +8 -8
- package/styles/design/progress-bars.less +8 -8
- package/styles/design/shadows.less +14 -7
- package/styles/design/tables.less +68 -106
- package/styles/design/text.less +5 -19
- package/styles/design/theme.less +10 -10
- package/styles/design/thumbnails.less +2 -2
- package/styles/design/type.less +4 -4
- package/styles/design/wells.less +1 -1
- package/styles/mapping/color-map.less +76 -75
- package/styles/mixins/_imports.less +14 -0
- package/styles/mixins/buttons.less +24 -56
- package/styles/mixins/forms.less +19 -55
- package/styles/mixins/hsl.less +19 -0
- package/styles/mixins/panels.less +2 -2
- package/styles/print/print.less +7 -7
- package/styles/rio-uikit-core.less +2 -2
- package/styles/rio-uikit-print-utilities.less +2 -2
- package/styles/rio-uikit-responsive-utilities.less +2 -2
- package/styles/variables/_index.less +196 -0
- package/styles/variables/colors.json +67 -0
- package/styles/variables/concated_css_variables.less +66 -0
- package/styles/variables/dark_colors.less +88 -0
- package/styles/variables/dark_css_variables.less +28 -0
- package/styles/variables/dark_css_variables_map.less +96 -0
- package/styles/variables/light_colors.less +92 -0
- package/styles/variables/light_css_variables.less +17 -0
- package/styles/variables/light_css_variables_map.less +100 -0
- package/styles/variables/screens.less +7 -0
- package/styles/variables/text.less +23 -0
- package/themes/.DS_Store +0 -0
- package/themes/BuyButton/styles/rio-buyButton.less +13 -8
- package/themes/MAN/styles/man-uikit.less +3 -0
- package/themes/SCANIA/styles/scania-uikit.less +3 -0
- package/themes/Volkswagen/.DS_Store +0 -0
- package/themes/Volkswagen/styles/vw-uikit.less +21 -30
- package/themes/Website/.DS_Store +0 -0
- package/themes/Website/styles/rio-website.less +154 -124
- package/themes/Xmas/styles/rio-xmas.less +59 -29
- package/types.ts +30 -5
- package/useDarkMode.d.ts +4 -0
- package/useDarkMode.js +2 -0
- package/useMutationObserver.d.ts +4 -0
- package/useMutationObserver.js +2 -0
- package/useScrollPosition.d.ts +4 -0
- package/useScrollPosition.js +2 -0
- package/utils/colorScheme.js +55 -0
- package/utils/init.js +34 -34
- package/version.json +1 -1
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
pointer-events: auto;
|
|
10
10
|
position: absolute;
|
|
11
11
|
-webkit-appearance: none;
|
|
12
|
-
-webkit-tap-highlight-color:
|
|
12
|
+
-webkit-tap-highlight-color: .hsla(@color-white-hsl, 0)[@result];
|
|
13
13
|
border: none;
|
|
14
14
|
border-radius: 2px;
|
|
15
15
|
background: transparent;
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
|
|
98
98
|
.range-track {
|
|
99
99
|
height: 4px;
|
|
100
|
-
background:
|
|
100
|
+
background: var(--brand-primary);
|
|
101
101
|
border-radius: 2px;
|
|
102
102
|
top: 7px;
|
|
103
103
|
position: absolute;
|
|
@@ -106,15 +106,15 @@
|
|
|
106
106
|
position: absolute;
|
|
107
107
|
bottom: calc(~"100% + 10px");
|
|
108
108
|
text-align: center;
|
|
109
|
-
background:
|
|
109
|
+
background: var(--brand-primary);
|
|
110
110
|
padding: 2px 5px;
|
|
111
111
|
font-size: 12px;
|
|
112
112
|
line-height: 12px;
|
|
113
113
|
border-radius: 2px;
|
|
114
|
-
color:
|
|
114
|
+
color: var(--color-white);
|
|
115
115
|
|
|
116
116
|
&:before {
|
|
117
|
-
border-color:
|
|
117
|
+
border-color: var(--brand-primary) transparent transparent;
|
|
118
118
|
border-style: solid;
|
|
119
119
|
border-width: 4px 4px 0 4px;
|
|
120
120
|
bottom: 0;
|
|
@@ -127,9 +127,9 @@
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
&:after {
|
|
130
|
-
background:
|
|
130
|
+
background: var(--color-white);
|
|
131
131
|
border-radius: 9px;
|
|
132
|
-
border: 2px solid
|
|
132
|
+
border: 2px solid var(--brand-primary);
|
|
133
133
|
bottom: -16px;
|
|
134
134
|
content: "";
|
|
135
135
|
height: 9px;
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
position: absolute;
|
|
190
190
|
border: none;
|
|
191
191
|
border-radius: 2px;
|
|
192
|
-
background:
|
|
192
|
+
background: var(--gray-lighter);
|
|
193
193
|
width: 100%;
|
|
194
194
|
height: 4px;
|
|
195
195
|
top: 7px;
|
|
@@ -201,29 +201,29 @@
|
|
|
201
201
|
input[type="range"] {
|
|
202
202
|
// webkit
|
|
203
203
|
&::-webkit-slider-thumb {
|
|
204
|
-
border-color:
|
|
204
|
+
border-color: var(--gray);
|
|
205
205
|
pointer-events: none;
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
// moz
|
|
209
209
|
&::-moz-range-track {
|
|
210
|
-
border-color:
|
|
210
|
+
border-color: var(--gray);
|
|
211
211
|
pointer-events: none;
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
&::-moz-range-thumb {
|
|
215
|
-
border-color:
|
|
215
|
+
border-color: var(--gray);
|
|
216
216
|
pointer-events: none;
|
|
217
217
|
}
|
|
218
218
|
|
|
219
219
|
// ms
|
|
220
220
|
&::-ms-track {
|
|
221
|
-
border-color:
|
|
221
|
+
border-color: var(--gray);
|
|
222
222
|
pointer-events: none;
|
|
223
223
|
}
|
|
224
224
|
|
|
225
225
|
&::-ms-thumb {
|
|
226
|
-
border-color:
|
|
226
|
+
border-color: var(--gray);
|
|
227
227
|
pointer-events: none;
|
|
228
228
|
}
|
|
229
229
|
}
|
|
@@ -237,14 +237,14 @@
|
|
|
237
237
|
}
|
|
238
238
|
|
|
239
239
|
.range-track {
|
|
240
|
-
background-color:
|
|
240
|
+
background-color: var(--gray);
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
.range-value {
|
|
244
|
-
background:
|
|
244
|
+
background: var(--gray);
|
|
245
245
|
|
|
246
246
|
&:before {
|
|
247
|
-
border-color:
|
|
247
|
+
border-color: var(--gray) transparent transparent;
|
|
248
248
|
}
|
|
249
249
|
}
|
|
250
250
|
}
|
|
@@ -266,9 +266,9 @@
|
|
|
266
266
|
position: relative;
|
|
267
267
|
width: 14px;
|
|
268
268
|
height: 14px;
|
|
269
|
-
border: 2px solid
|
|
269
|
+
border: 2px solid var(--brand-primary);
|
|
270
270
|
border-radius: 14px;
|
|
271
|
-
background:
|
|
271
|
+
background: var(--color-white);
|
|
272
272
|
outline: 0;
|
|
273
273
|
cursor: ew-resize;
|
|
274
274
|
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
.spinner {
|
|
2
|
-
.spinnerMixin(20,
|
|
2
|
+
.spinnerMixin(20, var(--brand-primary));
|
|
3
3
|
|
|
4
4
|
&.inverse {
|
|
5
|
-
.spinnerMixin(20,
|
|
5
|
+
.spinnerMixin(20, var(--color-white));
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
&.double {
|
|
9
|
-
.spinnerMixin(30,
|
|
9
|
+
.spinnerMixin(30, var(--brand-primary));
|
|
10
10
|
|
|
11
11
|
&.inverse {
|
|
12
|
-
.spinnerMixin(30,
|
|
12
|
+
.spinnerMixin(30, var(--color-white));
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
gap: 10px;
|
|
23
23
|
|
|
24
24
|
&.inverse {
|
|
25
|
-
color:
|
|
25
|
+
color: var(--color-white);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
&.fullscreen, &.fullsized {
|
|
29
|
-
background:
|
|
29
|
+
background: .hsla(@color-white-hsl, 0.85)[@result];
|
|
30
30
|
bottom: 0;
|
|
31
31
|
left: 0;
|
|
32
32
|
padding: 0 5%;
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.StatsWidget {
|
|
18
|
-
background:
|
|
18
|
+
background: var(--color-white);
|
|
19
19
|
border-radius: @border-radius-default;
|
|
20
|
-
border: 1px solid
|
|
20
|
+
border: 1px solid var(--gray-light);
|
|
21
21
|
flex: 1 1 auto;
|
|
22
22
|
position: relative;
|
|
23
23
|
user-select: none;
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
text-align: center;
|
|
29
29
|
|
|
30
30
|
&:after {
|
|
31
|
-
background:
|
|
31
|
+
background: var(--gray-lighter);
|
|
32
32
|
content: '';
|
|
33
33
|
display: block;
|
|
34
34
|
height: 2px;
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.StatsWidgetNumber-label {
|
|
89
|
-
color:
|
|
89
|
+
color: var(--gray-darkest);
|
|
90
90
|
text-align: center;
|
|
91
91
|
|
|
92
92
|
@media (max-width: @screen-sm) { font-size: 22px * 0.65 }
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
height: 20px;
|
|
101
101
|
|
|
102
102
|
&:not(.invisible) {
|
|
103
|
-
background:
|
|
103
|
+
background: var(--gray-lighter);
|
|
104
104
|
margin: 0 5px;
|
|
105
105
|
}
|
|
106
106
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
@roadsign-size: 50px;
|
|
6
6
|
@roadsign-arrow-color: escape('@{gray-lighter}');
|
|
7
|
-
@roadsign-svg-color: escape('
|
|
7
|
+
@roadsign-svg-color: escape('transparent');
|
|
8
8
|
@roadsign-svg-active-color: escape('@{color-highlight-decent}');
|
|
9
9
|
|
|
10
10
|
.stepped-progress-bar {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
&:before {
|
|
21
|
-
background-color:
|
|
21
|
+
background-color: var(--gray-light);
|
|
22
22
|
content: "";
|
|
23
23
|
height: 2px;
|
|
24
24
|
left: @circle-tab-size * 0.5;
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
.step-tab {
|
|
54
|
-
background:
|
|
54
|
+
background: var(--color-white);
|
|
55
55
|
border-radius: @circle-tab-border-radius;
|
|
56
|
-
border: 1px solid
|
|
56
|
+
border: 1px solid var(--gray);
|
|
57
57
|
font-weight: @font-normal;
|
|
58
58
|
height: @circle-tab-size;
|
|
59
59
|
min-width: @circle-tab-size;
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
text-align: center;
|
|
77
77
|
|
|
78
78
|
.item-icon {
|
|
79
|
-
color:
|
|
79
|
+
color: var(--brand-primary);
|
|
80
80
|
height: @circle-tab-size;
|
|
81
81
|
line-height: @circle-tab-size * 0.9;
|
|
82
82
|
margin-bottom: @circle-tab-size * 0.4;
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
.item-label {
|
|
91
|
-
color:
|
|
91
|
+
color: var(--brand-primary);
|
|
92
92
|
font-size: 16px;
|
|
93
93
|
left: 50%;
|
|
94
94
|
position: relative;
|
|
@@ -108,11 +108,11 @@
|
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
&:hover:not(.disabled) {
|
|
111
|
-
background-color:
|
|
112
|
-
border-color:
|
|
111
|
+
background-color: var(--brand-primary);
|
|
112
|
+
border-color: var(--brand-primary);
|
|
113
113
|
|
|
114
114
|
.item-icon {
|
|
115
|
-
color:
|
|
115
|
+
color: var(--color-white);
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
.item-label {
|
|
@@ -121,12 +121,12 @@
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
&.active {
|
|
124
|
-
color:
|
|
125
|
-
border-color:
|
|
126
|
-
background-color:
|
|
124
|
+
color: var(--color-white);
|
|
125
|
+
border-color: var(--brand-primary);
|
|
126
|
+
background-color: var(--brand-primary);
|
|
127
127
|
|
|
128
128
|
.item-icon {
|
|
129
|
-
color:
|
|
129
|
+
color: var(--color-white);
|
|
130
130
|
}
|
|
131
131
|
|
|
132
132
|
.item-label {
|
|
@@ -135,15 +135,15 @@
|
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
&.disabled {
|
|
138
|
-
border-color:
|
|
139
|
-
background-color:
|
|
138
|
+
border-color: var(--gray);
|
|
139
|
+
background-color: var(--color-white);
|
|
140
140
|
|
|
141
141
|
.item-icon {
|
|
142
|
-
color:
|
|
142
|
+
color: var(--gray);
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
.item-label {
|
|
146
|
-
color:
|
|
146
|
+
color: var(--gray);
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
}
|
|
@@ -154,8 +154,8 @@
|
|
|
154
154
|
|
|
155
155
|
.step-tab {
|
|
156
156
|
align-items: center;
|
|
157
|
-
background:
|
|
158
|
-
border: 1px solid
|
|
157
|
+
background: var(--color-white);
|
|
158
|
+
border: 1px solid var(--gray-light);
|
|
159
159
|
border-radius: @border-radius-default;
|
|
160
160
|
display: flex;
|
|
161
161
|
justify-content: center;
|
|
@@ -180,17 +180,18 @@
|
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
&.active {
|
|
183
|
-
border-color:
|
|
183
|
+
border-color: var(--brand-primary);
|
|
184
184
|
}
|
|
185
185
|
|
|
186
186
|
&.disabled {
|
|
187
|
-
background-color:
|
|
188
|
-
color:
|
|
187
|
+
background-color: var(--gray-lightest);
|
|
188
|
+
color: var(--gray);
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
&.variant-roadsign {
|
|
194
|
+
background: var(--color-white);
|
|
194
195
|
@media (min-width: @screen-sm) {
|
|
195
196
|
&:before {
|
|
196
197
|
display: none;
|
|
@@ -199,7 +200,7 @@
|
|
|
199
200
|
|
|
200
201
|
.step-tab {
|
|
201
202
|
align-items: center;
|
|
202
|
-
background:
|
|
203
|
+
background: var(--color-white);
|
|
203
204
|
display: flex;
|
|
204
205
|
flex: 1 1 0;
|
|
205
206
|
justify-content: center;
|
|
@@ -226,14 +227,14 @@
|
|
|
226
227
|
}
|
|
227
228
|
|
|
228
229
|
&.active {
|
|
229
|
-
color:
|
|
230
|
+
color: var(--brand-primary);
|
|
230
231
|
font-weight: @font-medium;
|
|
231
232
|
}
|
|
232
233
|
|
|
233
234
|
&.disabled {
|
|
234
|
-
border-color:
|
|
235
|
-
background-color:
|
|
236
|
-
color:
|
|
235
|
+
border-color: var(--gray);
|
|
236
|
+
background-color: var(--color-white);
|
|
237
|
+
color: var(--gray);
|
|
237
238
|
}
|
|
238
239
|
|
|
239
240
|
&:after {
|
|
@@ -246,14 +247,16 @@
|
|
|
246
247
|
right: 0;
|
|
247
248
|
background-size: 100% 100%;
|
|
248
249
|
background-repeat: no-repeat;
|
|
249
|
-
background-color:
|
|
250
|
+
//background-color: var(--gray-lighter);
|
|
250
251
|
background-image: url(~"data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2250%22%20height%3D%22100%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22@{roadsign-svg-color}%22%20d%3D%22M0%200h50v100H0z%22%2F%3E%3Cpath%20d%3D%22M10%200l40.04%2050L10%20100l-9.999-.001L40%2050%200%200h10z%22%20fill%3D%22@{roadsign-arrow-color}%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
|
|
251
252
|
}
|
|
252
253
|
|
|
253
254
|
&:last-child {
|
|
255
|
+
padding-left: 15px;
|
|
256
|
+
padding-right: 15px;
|
|
257
|
+
|
|
254
258
|
&:after {
|
|
255
259
|
display: none;
|
|
256
|
-
padding-right: 0;
|
|
257
260
|
}
|
|
258
261
|
}
|
|
259
262
|
}
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
top: 0;
|
|
37
37
|
|
|
38
38
|
&:checked + .switch-content {
|
|
39
|
-
background:
|
|
39
|
+
background: var(--brand-primary);
|
|
40
40
|
|
|
41
41
|
.panel-primary .panel-heading & {
|
|
42
|
-
background:
|
|
42
|
+
background: var(--color-highlight-dark);
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.switch-text {
|
|
@@ -67,17 +67,17 @@
|
|
|
67
67
|
|
|
68
68
|
+ .switch-content {
|
|
69
69
|
pointer-events: none;
|
|
70
|
-
background:
|
|
70
|
+
background: var(--gray-light);
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
&:checked + .switch-content {
|
|
74
|
-
background:
|
|
74
|
+
background: var(--color-highlight)-light;
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
.switch-content {
|
|
80
|
-
background-color:
|
|
80
|
+
background-color: var(--gray);
|
|
81
81
|
border-radius: @border-radius-round;
|
|
82
82
|
cursor: pointer;
|
|
83
83
|
height: @switch-height;
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
text-transform: uppercase;
|
|
93
93
|
|
|
94
94
|
&:before, &:after {
|
|
95
|
-
color:
|
|
95
|
+
color: var(--color-white);
|
|
96
96
|
display: inline-block;
|
|
97
97
|
line-height: @switch-height;
|
|
98
98
|
overflow: hidden;
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
.switch-handle {
|
|
123
|
-
background:
|
|
123
|
+
background: var(--color-white);
|
|
124
124
|
border-radius: @border-radius-round;
|
|
125
125
|
height: @switch-height - @switch-padding * 2;
|
|
126
126
|
left: @switch-padding;
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
width: @switch-height - @switch-padding * 2;
|
|
131
131
|
|
|
132
132
|
&:before {
|
|
133
|
-
background:
|
|
133
|
+
background: var(--gray-lighter);
|
|
134
134
|
border-radius: @border-radius-round;
|
|
135
135
|
content: '';
|
|
136
136
|
height: @switch-height * 0.5;
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.table-settings-item {
|
|
23
|
-
background:
|
|
24
|
-
border: 1px solid
|
|
23
|
+
background: var(--color-white);
|
|
24
|
+
border: 1px solid var(--gray-light);
|
|
25
25
|
position: relative;
|
|
26
26
|
transition: background-color 0.2s ease-in-out ~','box-shadow 0.2s ease-in-out;
|
|
27
27
|
z-index: 1;
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
padding: 0 8px;
|
|
33
33
|
|
|
34
34
|
&:hover {
|
|
35
|
-
background-color:
|
|
35
|
+
background-color: var(--color-highlight-decent);
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
align-items: center;
|
|
41
41
|
display: flex;
|
|
42
42
|
padding: 10px;
|
|
43
|
-
border-top: 1px solid
|
|
43
|
+
border-top: 1px solid var(--gray-light);
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
&:not(:last-child) {
|
|
@@ -63,14 +63,14 @@
|
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
&.movedColumn {
|
|
66
|
-
background-color:
|
|
66
|
+
background-color: var(--color-highlight-decent);
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
.table-settings-item-label {
|
|
70
70
|
.ellipsis-1;
|
|
71
71
|
cursor: grab;
|
|
72
72
|
align-items: center;
|
|
73
|
-
color:
|
|
73
|
+
color: var(--gray-dark);
|
|
74
74
|
display: flex;
|
|
75
75
|
flex: 1 0;
|
|
76
76
|
font-weight: @font-normal;
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
.column-width-label {
|
|
86
|
-
color:
|
|
86
|
+
color: var(--gray);
|
|
87
87
|
margin-right: 5px;
|
|
88
88
|
}
|
|
89
89
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
.tag {
|
|
2
|
-
background:
|
|
2
|
+
background: var(--color-white);
|
|
3
3
|
font-size: 14px;
|
|
4
4
|
font-weight: @font-normal;
|
|
5
5
|
line-height: @btn-size-sm * 0.6;
|
|
6
6
|
border-radius: 2px;
|
|
7
|
-
border: 1px solid
|
|
8
|
-
color:
|
|
7
|
+
border: 1px solid var(--gray-light);
|
|
8
|
+
color: var(--gray-dark);
|
|
9
9
|
border-radius: @btn-size-sm;
|
|
10
10
|
position: relative;
|
|
11
11
|
display: inline-flex;
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
&.tag-muted {
|
|
24
|
-
border-color:
|
|
25
|
-
background-color:
|
|
24
|
+
border-color: var(--gray-lightest);
|
|
25
|
+
background-color: var(--gray-lightest);
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
&[style*="width"],
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
&.disabled {
|
|
54
|
-
border-color:
|
|
55
|
-
background-color:
|
|
54
|
+
border-color: var(--gray);
|
|
55
|
+
background-color: var(--gray-light);
|
|
56
56
|
opacity: .5;
|
|
57
57
|
position: relative;
|
|
58
58
|
|
|
@@ -75,17 +75,17 @@
|
|
|
75
75
|
cursor: pointer;
|
|
76
76
|
|
|
77
77
|
&:hover {
|
|
78
|
-
background-color:
|
|
78
|
+
background-color: var(--gray-lightest);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
&.active {
|
|
83
|
-
background-color:
|
|
83
|
+
background-color: .hsla(@brand-primary-hsl, 0.2)[@result];
|
|
84
84
|
border-color: @brand-primary;
|
|
85
85
|
color: @brand-primary;
|
|
86
86
|
|
|
87
87
|
&:hover {
|
|
88
|
-
background-color:
|
|
88
|
+
background-color: .hsla(@brand-primary-hsl, 0.3)[@result];
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
.timeline {
|
|
2
2
|
.timeline-date {
|
|
3
3
|
position: relative;
|
|
4
|
-
color:
|
|
4
|
+
color: var(--gray-dark);
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.timeline-content {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
white-space: nowrap;
|
|
24
24
|
|
|
25
25
|
&:before {
|
|
26
|
-
background:
|
|
26
|
+
background: var(--gray-light);
|
|
27
27
|
bottom: 5px;
|
|
28
28
|
content: "";
|
|
29
29
|
left: 50%;
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
padding-top: 60px;
|
|
52
52
|
|
|
53
53
|
&:before {
|
|
54
|
-
background:
|
|
54
|
+
background: var(--gray-light);
|
|
55
55
|
top: 20px;
|
|
56
56
|
content: "";
|
|
57
57
|
left: 50%;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@tooltip-max-width: 200px;
|
|
2
|
-
@tooltip-color:
|
|
3
|
-
@tooltip-bg:
|
|
2
|
+
@tooltip-color: var(--color-white);
|
|
3
|
+
@tooltip-bg: var(--gray-darker);
|
|
4
4
|
@tooltip-arrow-width: 5px;
|
|
5
5
|
@tooltip-arrow-color: @tooltip-bg;
|
|
6
6
|
@tooltip-opacity: 1;
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
z-index: @zindex-tooltip;
|
|
49
49
|
|
|
50
50
|
.tooltip-inner {
|
|
51
|
-
background:
|
|
51
|
+
background: var(--gray-darkest);
|
|
52
52
|
border-radius: @border-radius-sm;
|
|
53
53
|
padding: 5px 10px;
|
|
54
54
|
width: 180px;
|
|
@@ -67,13 +67,13 @@
|
|
|
67
67
|
@arrow-size-hypotenuse: sqrt(pow(@arrow-size, 2) + pow(@arrow-size, 2));
|
|
68
68
|
|
|
69
69
|
.tooltip-mixin(
|
|
70
|
-
@offset: 10px; @overlap: 10px; @color:
|
|
70
|
+
@offset: 10px; @overlap: 10px; @color: var(--gray-darkest); @arrow-size: 5px; @arrow-size-hypotenuse:
|
|
71
71
|
@arrow-size-hypotenuse;
|
|
72
72
|
);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
&.tooltip-onboarding {
|
|
76
|
-
filter: drop-shadow(0 0 10px
|
|
76
|
+
filter: drop-shadow(0 0 10px .hsla(@always-color-black-hsl, 0.3)[@result]);
|
|
77
77
|
z-index: @zindex-tooltip-onboarding;
|
|
78
78
|
|
|
79
79
|
&.onboarding-clickflow {
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
|
|
82
82
|
&.onboarding-clickflow-backdrop {
|
|
83
83
|
&:after {
|
|
84
|
-
background-color:
|
|
84
|
+
background-color: .hsla(@always-color-black-hsl, 0.3)[@result];
|
|
85
85
|
bottom: -1500px;
|
|
86
86
|
content: "";
|
|
87
87
|
display: block;
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
}
|
|
107
107
|
|
|
108
108
|
.tooltip-inner {
|
|
109
|
-
background:
|
|
109
|
+
background: var(--brand-secondary);
|
|
110
110
|
border-radius: @border-radius-default;
|
|
111
111
|
padding: 15px;
|
|
112
112
|
width: 330px;
|
|
@@ -124,13 +124,13 @@
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
.tooltip-close {
|
|
127
|
-
color:
|
|
127
|
+
color: .hslb(@brand-secondary-hsl, '-', '10%')[@result];
|
|
128
128
|
cursor: pointer;
|
|
129
129
|
font-size: 16px;
|
|
130
130
|
margin: 2px 0 0 10px;
|
|
131
131
|
|
|
132
132
|
&:hover {
|
|
133
|
-
color:
|
|
133
|
+
color: var(--color-white);
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
136
|
}
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
@arrow-size-hypotenuse: sqrt(pow(@arrow-size, 2) + pow(@arrow-size, 2));
|
|
140
140
|
|
|
141
141
|
.tooltip-mixin(
|
|
142
|
-
@offset: 20px; @overlap: 25px; @color:
|
|
142
|
+
@offset: 20px; @overlap: 25px; @color: var(--color-map-marker-poi); @arrow-size: @arrow-size; @arrow-size-hypotenuse:
|
|
143
143
|
@arrow-size-hypotenuse;
|
|
144
144
|
);
|
|
145
145
|
}
|