@rio-cloud/rio-uikit 0.15.0-beta-48 → 0.15.0-beta-49
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/lib/components/actionBarItem/ActionBarItem.js +9 -0
- package/lib/components/actionBarItem/ActionBarItemList.js +38 -0
- package/lib/components/actionBarItem/ActionBarItemListItem.js +51 -0
- package/lib/components/actionBarItem/ActionBarItemListSeparator.js +37 -0
- package/lib/components/actionBarItem/ActionBarOverlay.js +2 -2
- package/lib/components/animatedNumber/AnimatedNumber.js +81 -0
- package/lib/components/applicationHeader/ApplicationHeader.js +4 -1
- package/lib/components/assetTree/Tree.js +3 -3
- package/lib/components/autosuggest/AutoSuggest.js +5 -3
- package/lib/components/button/Button.js +25 -8
- package/lib/components/charts/BarChart.js +2 -2
- package/lib/components/charts/ChartNeedle.js +2 -2
- package/lib/components/charts/chartHelper.js +3 -3
- package/lib/components/checkbox/Checkbox.js +127 -171
- package/lib/components/checkbox/Checkbox.less +4 -2
- package/lib/components/clearableInput/ClearableInput.js +2 -2
- package/lib/components/clearableInput/ClearableInput.less +1 -0
- package/lib/components/dataTabs/DataTabs.js +78 -120
- package/lib/components/datepicker/DateRangePicker.js +3 -3
- package/lib/components/dialog/Dialog.js +2 -2
- package/lib/components/dialog/InfoDialog.js +2 -2
- package/lib/components/dialog/MediaDialog.js +2 -2
- package/lib/components/dialog/SaveDialog.js +2 -2
- package/lib/components/dialog/SimpleDialog.js +2 -2
- package/lib/components/dialog/SplitDialog.js +2 -2
- package/lib/components/driverName/DriverName.js +1 -1
- package/lib/components/dropdown/ButtonDropdown.js +2 -2
- package/lib/components/dropdown/DropdownSubmenu.less +2 -2
- package/lib/components/fade/Fade.js +2 -2
- package/lib/components/filepicker/FilePicker.js +2 -2
- package/lib/components/listMenu/ListMenu.js +2 -2
- package/lib/components/loadMore/LoadMoreButton.js +1 -1
- package/lib/components/map/components/Map.js +2 -2
- package/lib/components/map/components/constants.js +1 -1
- package/lib/components/map/components/features/Route.js +2 -2
- package/lib/components/map/components/features/basics/MapLayerGroup.js +2 -2
- package/lib/components/map/components/features/basics/marker/Marker.js +2 -1
- package/lib/components/map/components/features/basics/marker/TextMarker.js +1 -1
- package/lib/components/map/components/features/layers/MarkerLayer.js +2 -2
- package/lib/components/map/components/features/layers/clustering/SimpleClusterLayer.js +2 -2
- package/lib/components/map/utils/eventHandling.js +5 -4
- package/lib/components/map/utils/hooks.js +1 -1
- package/lib/components/map/utils/validation.js +1 -1
- package/lib/components/numberControl/NumberControl.js +161 -145
- package/lib/components/numberInput/NumberInput.js +147 -229
- package/lib/components/onboarding/OnboardingTip.js +1 -1
- package/lib/components/overlay/OverlayTrigger.js +2 -1
- package/lib/components/radiobutton/RadioButton.js +116 -148
- package/lib/components/radiobutton/RadioButton.less +10 -6
- package/lib/components/resizer/Resizer.less +2 -2
- package/lib/components/selects/BaseDropdownMenu.js +2 -2
- package/lib/components/spinner/Spinner.js +1 -1
- package/lib/components/states/baseStatePropTypes.js +1 -1
- package/lib/components/supportMarker/toggleSupportMarker.js +1 -1
- package/lib/components/table/SortArrows.js +1 -1
- package/lib/components/table/TableSettingsDialog.js +2 -2
- package/lib/components/table/TableSettingsListItem.js +1 -1
- package/lib/components/teaser/Teaser.js +1 -1
- package/lib/components/timepicker/TimePicker.js +10 -2
- package/lib/components/tooltip/Tooltip.js +4 -4
- package/lib/es/ActionBarItem.d.ts +6 -0
- package/lib/es/ActionBarItemList.d.ts +5 -0
- package/lib/es/ActionBarItemList.js +15 -0
- package/lib/es/ActionBarItemListItem.d.ts +5 -0
- package/lib/es/ActionBarItemListItem.js +15 -0
- package/lib/es/ActionBarItemListSeparator.d.ts +5 -0
- package/lib/es/ActionBarItemListSeparator.js +15 -0
- package/lib/es/AnimatedNumber.d.ts +5 -0
- package/lib/es/AnimatedNumber.js +15 -0
- package/lib/es/SortUtils.js +4 -4
- package/lib/es/deviceUtils.js +4 -4
- package/lib/es/routeUtils.js +6 -6
- package/lib/hooks/useDebugInfo.js +2 -2
- package/lib/index.js +267 -267
- package/lib/mapIndex.js +72 -72
- package/lib/style/css/_exports/rio-buyButton.less +5 -0
- package/lib/style/css/_exports/rio-website.less +28 -0
- package/lib/style/css/bootstrap/dropdowns.less +13 -13
- package/lib/style/css/rio-theme/button-groups.less +1 -1
- package/lib/style/css/rio-theme/buttons.less +53 -1
- package/lib/style/css/rio-theme/carousel.less +1 -1
- package/lib/style/css/rio-theme/navbar.less +44 -1
- package/lib/style/css/rio-theme/pagination.less +1 -1
- package/lib/style/css/utils/animations/translate.less +4 -1
- package/lib/style/css/utils/text.less +3 -0
- package/lib/style/fonts/rioglyph/rioglyph.less +74 -14
- package/lib/style/fonts/rioglyph/rioglyph.svg +106 -34
- package/lib/style/fonts/rioglyph/rioglyph.ttf +0 -0
- package/lib/style/fonts/rioglyph/rioglyph.woff +0 -0
- package/lib/types.ts +30 -1
- package/lib/utils/SortUtils.js +2 -2
- package/lib/utils/buttonEffect.js +68 -0
- package/lib/utils/deviceUtils.js +1 -1
- package/lib/utils/logDeprecatedWarnings.js +1 -1
- package/lib/utils/logPropError.js +1 -1
- package/lib/utils/routeUtils.js +4 -3
- package/lib/utils/scrollItemIntoView.js +1 -1
- package/lib/version.json +1 -1
- package/package.json +62 -67
package/lib/mapIndex.js
CHANGED
|
@@ -5,154 +5,154 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
|
-
Object.defineProperty(exports, "
|
|
8
|
+
Object.defineProperty(exports, "Circle", {
|
|
9
9
|
enumerable: true,
|
|
10
10
|
get: function get() {
|
|
11
|
-
return
|
|
11
|
+
return _Circle2.default;
|
|
12
12
|
}
|
|
13
13
|
});
|
|
14
|
-
Object.defineProperty(exports, "
|
|
14
|
+
Object.defineProperty(exports, "ClusterLayer", {
|
|
15
15
|
enumerable: true,
|
|
16
16
|
get: function get() {
|
|
17
|
-
return
|
|
17
|
+
return _ClusterLayer2.default;
|
|
18
18
|
}
|
|
19
19
|
});
|
|
20
|
-
Object.defineProperty(exports, "
|
|
20
|
+
Object.defineProperty(exports, "ClusterMapMarker", {
|
|
21
21
|
enumerable: true,
|
|
22
22
|
get: function get() {
|
|
23
|
-
return
|
|
23
|
+
return _ClusterMapMarker2.default;
|
|
24
24
|
}
|
|
25
25
|
});
|
|
26
|
-
Object.defineProperty(exports, "
|
|
26
|
+
Object.defineProperty(exports, "ClusterUtils", {
|
|
27
27
|
enumerable: true,
|
|
28
28
|
get: function get() {
|
|
29
|
-
return
|
|
29
|
+
return _clustering.ClusterUtils;
|
|
30
30
|
}
|
|
31
31
|
});
|
|
32
|
-
Object.defineProperty(exports, "
|
|
32
|
+
Object.defineProperty(exports, "ContextMenu", {
|
|
33
33
|
enumerable: true,
|
|
34
34
|
get: function get() {
|
|
35
|
-
return
|
|
35
|
+
return _ContextMenu2.default;
|
|
36
36
|
}
|
|
37
37
|
});
|
|
38
|
-
Object.defineProperty(exports, "
|
|
38
|
+
Object.defineProperty(exports, "ContextMenuItem", {
|
|
39
39
|
enumerable: true,
|
|
40
40
|
get: function get() {
|
|
41
|
-
return
|
|
41
|
+
return _ContextMenuItem2.default;
|
|
42
42
|
}
|
|
43
43
|
});
|
|
44
|
-
Object.defineProperty(exports, "
|
|
44
|
+
Object.defineProperty(exports, "DomMarker", {
|
|
45
45
|
enumerable: true,
|
|
46
46
|
get: function get() {
|
|
47
|
-
return
|
|
47
|
+
return _DomMarker2.default;
|
|
48
48
|
}
|
|
49
49
|
});
|
|
50
|
-
Object.defineProperty(exports, "
|
|
50
|
+
Object.defineProperty(exports, "EventUtils", {
|
|
51
51
|
enumerable: true,
|
|
52
52
|
get: function get() {
|
|
53
|
-
return
|
|
53
|
+
return _eventHandling.EventUtils;
|
|
54
54
|
}
|
|
55
55
|
});
|
|
56
|
-
Object.defineProperty(exports, "
|
|
56
|
+
Object.defineProperty(exports, "IncidentsLayer", {
|
|
57
57
|
enumerable: true,
|
|
58
58
|
get: function get() {
|
|
59
|
-
return
|
|
59
|
+
return _IncidentsLayer2.default;
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
|
-
Object.defineProperty(exports, "
|
|
62
|
+
Object.defineProperty(exports, "Map", {
|
|
63
63
|
enumerable: true,
|
|
64
64
|
get: function get() {
|
|
65
|
-
return
|
|
65
|
+
return _Map2.default;
|
|
66
66
|
}
|
|
67
67
|
});
|
|
68
|
-
Object.defineProperty(exports, "
|
|
68
|
+
Object.defineProperty(exports, "MapBoundingBoxButton", {
|
|
69
69
|
enumerable: true,
|
|
70
70
|
get: function get() {
|
|
71
|
-
return
|
|
71
|
+
return _MapBoundingBoxButton2.default;
|
|
72
72
|
}
|
|
73
73
|
});
|
|
74
|
-
Object.defineProperty(exports, "
|
|
74
|
+
Object.defineProperty(exports, "MapCenterMarkerButton", {
|
|
75
75
|
enumerable: true,
|
|
76
76
|
get: function get() {
|
|
77
|
-
return
|
|
77
|
+
return _MapCenterMarkerButton2.default;
|
|
78
78
|
}
|
|
79
79
|
});
|
|
80
|
-
Object.defineProperty(exports, "
|
|
80
|
+
Object.defineProperty(exports, "MapClusterSettings", {
|
|
81
81
|
enumerable: true,
|
|
82
82
|
get: function get() {
|
|
83
|
-
return
|
|
83
|
+
return _MapClusterSettings2.default;
|
|
84
84
|
}
|
|
85
85
|
});
|
|
86
|
-
Object.defineProperty(exports, "
|
|
86
|
+
Object.defineProperty(exports, "MapCustomerPoiSettingsItem", {
|
|
87
87
|
enumerable: true,
|
|
88
88
|
get: function get() {
|
|
89
|
-
return
|
|
89
|
+
return _MapCustomerPoiSettingsItem2.default;
|
|
90
90
|
}
|
|
91
91
|
});
|
|
92
|
-
Object.defineProperty(exports, "
|
|
92
|
+
Object.defineProperty(exports, "MapLayerGroup", {
|
|
93
93
|
enumerable: true,
|
|
94
94
|
get: function get() {
|
|
95
|
-
return
|
|
95
|
+
return _MapLayerGroup2.default;
|
|
96
96
|
}
|
|
97
97
|
});
|
|
98
|
-
Object.defineProperty(exports, "
|
|
98
|
+
Object.defineProperty(exports, "MapLayerIncidentsItem", {
|
|
99
99
|
enumerable: true,
|
|
100
100
|
get: function get() {
|
|
101
|
-
return
|
|
101
|
+
return _MapLayerIncidentsItem2.default;
|
|
102
102
|
}
|
|
103
103
|
});
|
|
104
|
-
Object.defineProperty(exports, "
|
|
104
|
+
Object.defineProperty(exports, "MapLayerRoadRestrictionsItem", {
|
|
105
105
|
enumerable: true,
|
|
106
106
|
get: function get() {
|
|
107
|
-
return
|
|
107
|
+
return _MapLayerRoadRestrictionsItem2.default;
|
|
108
108
|
}
|
|
109
109
|
});
|
|
110
|
-
Object.defineProperty(exports, "
|
|
110
|
+
Object.defineProperty(exports, "MapLayerSettings", {
|
|
111
111
|
enumerable: true,
|
|
112
112
|
get: function get() {
|
|
113
|
-
return
|
|
113
|
+
return _MapLayerSettings2.default;
|
|
114
114
|
}
|
|
115
115
|
});
|
|
116
|
-
Object.defineProperty(exports, "
|
|
116
|
+
Object.defineProperty(exports, "MapLayerTrafficItem", {
|
|
117
117
|
enumerable: true,
|
|
118
118
|
get: function get() {
|
|
119
|
-
return
|
|
119
|
+
return _MapLayerTrafficItem2.default;
|
|
120
120
|
}
|
|
121
121
|
});
|
|
122
|
-
Object.defineProperty(exports, "
|
|
122
|
+
Object.defineProperty(exports, "MapLockMarkerButton", {
|
|
123
123
|
enumerable: true,
|
|
124
124
|
get: function get() {
|
|
125
|
-
return
|
|
125
|
+
return _MapLockMarkerButton2.default;
|
|
126
126
|
}
|
|
127
127
|
});
|
|
128
|
-
Object.defineProperty(exports, "
|
|
128
|
+
Object.defineProperty(exports, "MapSettings", {
|
|
129
129
|
enumerable: true,
|
|
130
130
|
get: function get() {
|
|
131
|
-
return
|
|
131
|
+
return _MapSettings2.default;
|
|
132
132
|
}
|
|
133
133
|
});
|
|
134
|
-
Object.defineProperty(exports, "
|
|
134
|
+
Object.defineProperty(exports, "MapSettingsItem", {
|
|
135
135
|
enumerable: true,
|
|
136
136
|
get: function get() {
|
|
137
|
-
return
|
|
137
|
+
return _MapSettingsItem2.default;
|
|
138
138
|
}
|
|
139
139
|
});
|
|
140
|
-
Object.defineProperty(exports, "
|
|
140
|
+
Object.defineProperty(exports, "MapSettingsPanel", {
|
|
141
141
|
enumerable: true,
|
|
142
142
|
get: function get() {
|
|
143
|
-
return
|
|
143
|
+
return _MapSettingsPanel2.default;
|
|
144
144
|
}
|
|
145
145
|
});
|
|
146
|
-
Object.defineProperty(exports, "
|
|
146
|
+
Object.defineProperty(exports, "MapSettingsTile", {
|
|
147
147
|
enumerable: true,
|
|
148
148
|
get: function get() {
|
|
149
|
-
return
|
|
149
|
+
return _MapSettingsTile2.default;
|
|
150
150
|
}
|
|
151
151
|
});
|
|
152
|
-
Object.defineProperty(exports, "
|
|
152
|
+
Object.defineProperty(exports, "MapTypeSettings", {
|
|
153
153
|
enumerable: true,
|
|
154
154
|
get: function get() {
|
|
155
|
-
return
|
|
155
|
+
return _MapTypeSettings2.default;
|
|
156
156
|
}
|
|
157
157
|
});
|
|
158
158
|
Object.defineProperty(exports, "MapWorkshopPoiSettingsItem", {
|
|
@@ -161,70 +161,70 @@ Object.defineProperty(exports, "MapWorkshopPoiSettingsItem", {
|
|
|
161
161
|
return _MapWorkshopPoiSettingsItem2.default;
|
|
162
162
|
}
|
|
163
163
|
});
|
|
164
|
-
Object.defineProperty(exports, "
|
|
164
|
+
Object.defineProperty(exports, "Marker", {
|
|
165
165
|
enumerable: true,
|
|
166
166
|
get: function get() {
|
|
167
|
-
return
|
|
167
|
+
return _Marker2.default;
|
|
168
168
|
}
|
|
169
169
|
});
|
|
170
|
-
Object.defineProperty(exports, "
|
|
170
|
+
Object.defineProperty(exports, "MarkerLayer", {
|
|
171
171
|
enumerable: true,
|
|
172
172
|
get: function get() {
|
|
173
|
-
return
|
|
173
|
+
return _MarkerLayer2.default;
|
|
174
174
|
}
|
|
175
175
|
});
|
|
176
|
-
Object.defineProperty(exports, "
|
|
176
|
+
Object.defineProperty(exports, "Polygon", {
|
|
177
177
|
enumerable: true,
|
|
178
178
|
get: function get() {
|
|
179
|
-
return
|
|
179
|
+
return _Polygon2.default;
|
|
180
180
|
}
|
|
181
181
|
});
|
|
182
|
-
Object.defineProperty(exports, "
|
|
182
|
+
Object.defineProperty(exports, "Polyline", {
|
|
183
183
|
enumerable: true,
|
|
184
184
|
get: function get() {
|
|
185
|
-
return
|
|
185
|
+
return _Polyline2.default;
|
|
186
186
|
}
|
|
187
187
|
});
|
|
188
|
-
Object.defineProperty(exports, "
|
|
188
|
+
Object.defineProperty(exports, "PositionUtils", {
|
|
189
189
|
enumerable: true,
|
|
190
190
|
get: function get() {
|
|
191
|
-
return
|
|
191
|
+
return _positions.PositionUtils;
|
|
192
192
|
}
|
|
193
193
|
});
|
|
194
|
-
Object.defineProperty(exports, "
|
|
194
|
+
Object.defineProperty(exports, "Route", {
|
|
195
195
|
enumerable: true,
|
|
196
196
|
get: function get() {
|
|
197
|
-
return
|
|
197
|
+
return _Route2.default;
|
|
198
198
|
}
|
|
199
199
|
});
|
|
200
|
-
Object.defineProperty(exports, "
|
|
200
|
+
Object.defineProperty(exports, "SimpleClusterLayer", {
|
|
201
201
|
enumerable: true,
|
|
202
202
|
get: function get() {
|
|
203
|
-
return
|
|
203
|
+
return _SimpleClusterLayer2.default;
|
|
204
204
|
}
|
|
205
205
|
});
|
|
206
|
-
Object.defineProperty(exports, "
|
|
206
|
+
Object.defineProperty(exports, "SingleMapMarker", {
|
|
207
207
|
enumerable: true,
|
|
208
208
|
get: function get() {
|
|
209
|
-
return
|
|
209
|
+
return _SingleMapMarker2.default;
|
|
210
210
|
}
|
|
211
211
|
});
|
|
212
|
-
Object.defineProperty(exports, "
|
|
212
|
+
Object.defineProperty(exports, "TextMarker", {
|
|
213
213
|
enumerable: true,
|
|
214
214
|
get: function get() {
|
|
215
|
-
return
|
|
215
|
+
return _TextMarker2.default;
|
|
216
216
|
}
|
|
217
217
|
});
|
|
218
|
-
Object.defineProperty(exports, "
|
|
218
|
+
Object.defineProperty(exports, "TrafficLayer", {
|
|
219
219
|
enumerable: true,
|
|
220
220
|
get: function get() {
|
|
221
|
-
return
|
|
221
|
+
return _TrafficLayer2.default;
|
|
222
222
|
}
|
|
223
223
|
});
|
|
224
|
-
Object.defineProperty(exports, "
|
|
224
|
+
Object.defineProperty(exports, "TruckLayer", {
|
|
225
225
|
enumerable: true,
|
|
226
226
|
get: function get() {
|
|
227
|
-
return
|
|
227
|
+
return _TruckLayer2.default;
|
|
228
228
|
}
|
|
229
229
|
});
|
|
230
230
|
|
|
@@ -1525,6 +1525,10 @@ html.show-handheld-navigation {
|
|
|
1525
1525
|
&.col-md-4 {
|
|
1526
1526
|
@media (min-width: @screen-md) { width: 50%; }
|
|
1527
1527
|
}
|
|
1528
|
+
|
|
1529
|
+
&.col-ls-4 {
|
|
1530
|
+
@media (min-width: @screen-ls) { width: 50%; }
|
|
1531
|
+
}
|
|
1528
1532
|
}
|
|
1529
1533
|
}
|
|
1530
1534
|
}
|
|
@@ -1905,6 +1909,30 @@ blockquote {
|
|
|
1905
1909
|
}
|
|
1906
1910
|
}
|
|
1907
1911
|
|
|
1912
|
+
// Video Player
|
|
1913
|
+
._video-embed-container {
|
|
1914
|
+
background: @color-black;
|
|
1915
|
+
|
|
1916
|
+
.data-privacy-modal {
|
|
1917
|
+
@media (max-width: @screen-ls) {
|
|
1918
|
+
p {
|
|
1919
|
+
display: none;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
.btn {
|
|
1923
|
+
height: auto;
|
|
1924
|
+
line-height: 1.25;
|
|
1925
|
+
white-space: pre-wrap;
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
[class*="btn-"]:hover {
|
|
1932
|
+
transform: none !important;
|
|
1933
|
+
box-shadow: none !important;
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1908
1936
|
// cookie disclaimer
|
|
1909
1937
|
#cookieDisclaimer > .position-absolute {
|
|
1910
1938
|
position: fixed !important;
|
|
@@ -29,24 +29,24 @@
|
|
|
29
29
|
|
|
30
30
|
// The dropdown menu (ul)
|
|
31
31
|
.dropdown-menu {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
background-clip: padding-box;
|
|
33
|
+
background-color: @dropdown-bg;
|
|
34
|
+
border-radius: @border-radius-base;
|
|
35
|
+
border: 1px solid @dropdown-border;
|
|
36
|
+
box-shadow:0 6px 12px rgba(0,0,0,.175);
|
|
36
37
|
display: none; // none by default, but block on "open" of the menu
|
|
37
38
|
float: left;
|
|
39
|
+
font-size: @font-size-base;
|
|
40
|
+
left: 0;
|
|
41
|
+
list-style: none;
|
|
42
|
+
margin: 2px 0 0; // override default ul
|
|
38
43
|
min-width: 160px;
|
|
39
44
|
padding: 5px 0;
|
|
40
|
-
|
|
41
|
-
list-style: none;
|
|
42
|
-
font-size: @font-size-base;
|
|
45
|
+
position: absolute;
|
|
43
46
|
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
border-radius: @border-radius-base;
|
|
48
|
-
box-shadow:0 6px 12px rgba(0,0,0,.175);
|
|
49
|
-
background-clip: padding-box;
|
|
47
|
+
top: 100%;
|
|
48
|
+
width: 100%;
|
|
49
|
+
z-index: @zindex-dropdown;
|
|
50
50
|
|
|
51
51
|
// Aligns the dropdown menu to right
|
|
52
52
|
//
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
.btn {
|
|
53
53
|
position: relative;
|
|
54
|
+
overflow: hidden;
|
|
54
55
|
display: inline-flex;
|
|
55
56
|
align-items: center;
|
|
56
57
|
justify-content: center;
|
|
@@ -80,7 +81,11 @@
|
|
|
80
81
|
}
|
|
81
82
|
|
|
82
83
|
&.btn-toggle.active {
|
|
83
|
-
box-shadow: inset 0
|
|
84
|
+
box-shadow: inset 0 1px 5px 1px rgb(90 101 102 / 50%);
|
|
85
|
+
|
|
86
|
+
&.btn-primary {
|
|
87
|
+
box-shadow: inset 0 1px 5px 1px rgb(90 101 102 / 70%);
|
|
88
|
+
}
|
|
84
89
|
}
|
|
85
90
|
|
|
86
91
|
&-toolbar {
|
|
@@ -567,3 +572,50 @@
|
|
|
567
572
|
);
|
|
568
573
|
}
|
|
569
574
|
}
|
|
575
|
+
|
|
576
|
+
.btn-default,
|
|
577
|
+
.btn-primary,
|
|
578
|
+
.btn-secondary,
|
|
579
|
+
.btn-success,
|
|
580
|
+
.btn-info,
|
|
581
|
+
.btn-warning,
|
|
582
|
+
.btn-danger {
|
|
583
|
+
&:not(.btn-link):not(.btn-action) {
|
|
584
|
+
transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
|
|
585
|
+
|
|
586
|
+
// Currently deactivated, because some services are already using the beta and we should introduce it globally and inform about it before.
|
|
587
|
+
// &:hover {
|
|
588
|
+
// transform: translateY(-2px);
|
|
589
|
+
// box-shadow: 0px 2px 4px 0px rgb(143 143 143 / 60%);
|
|
590
|
+
// }
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
// .btn-no-hover-effect:hover {
|
|
595
|
+
// transform: none !important;
|
|
596
|
+
// box-shadow: none !important;
|
|
597
|
+
// }
|
|
598
|
+
|
|
599
|
+
.input-group-btn,
|
|
600
|
+
.btn-group-vertical {
|
|
601
|
+
.btn:hover {
|
|
602
|
+
transform: none !important;
|
|
603
|
+
box-shadow: none !important;
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.btn-ripple {
|
|
608
|
+
position: absolute;
|
|
609
|
+
z-index: 1;
|
|
610
|
+
border-radius: 50%;
|
|
611
|
+
transform: scale(0);
|
|
612
|
+
animation: ripple 600ms linear;
|
|
613
|
+
background-color: rgba(255, 255, 255, 0.7);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
@keyframes ripple {
|
|
617
|
+
to {
|
|
618
|
+
transform: scale(4);
|
|
619
|
+
opacity: 0;
|
|
620
|
+
}
|
|
621
|
+
}
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
|
|
45
45
|
// Custom variables
|
|
46
46
|
@navbar-brand-home-icon: url('https://cdn.rio.cloud/svg/common/ico_home.svg');
|
|
47
|
+
@navbar-brand-icon: url('https://cdn.rio.cloud/svg/common/ico_rio_colored.svg');
|
|
47
48
|
@navbar-collapse-max-height: 340px;
|
|
48
49
|
@box-shadow: inset 0 -3px 0 @color-black, 0 1px 0 @color-black;
|
|
49
50
|
|
|
@@ -109,13 +110,18 @@
|
|
|
109
110
|
|
|
110
111
|
.navbar-brand {
|
|
111
112
|
background-color: transparent !important;
|
|
112
|
-
background-image: @navbar-brand-
|
|
113
|
+
background-image: @navbar-brand-icon !important;
|
|
114
|
+
background-size: cover;
|
|
113
115
|
height: @navbar-height-without-border;
|
|
114
116
|
margin: 0;
|
|
115
117
|
padding: 0;
|
|
116
118
|
position: relative;
|
|
117
119
|
width: @navbar-height;
|
|
118
120
|
|
|
121
|
+
&.home-icon {
|
|
122
|
+
background-image: @navbar-brand-home-icon !important;
|
|
123
|
+
}
|
|
124
|
+
|
|
119
125
|
&:after {
|
|
120
126
|
background: @color-black;
|
|
121
127
|
content: '';
|
|
@@ -440,3 +446,40 @@
|
|
|
440
446
|
}
|
|
441
447
|
}
|
|
442
448
|
}
|
|
449
|
+
|
|
450
|
+
.ActionBarItemList {
|
|
451
|
+
margin: 0;
|
|
452
|
+
padding: 0;
|
|
453
|
+
|
|
454
|
+
&Item {
|
|
455
|
+
display: flex;
|
|
456
|
+
align-items: flex-start;
|
|
457
|
+
gap: 8px;
|
|
458
|
+
padding-top: 5px;
|
|
459
|
+
padding-bottom: 5px;
|
|
460
|
+
|
|
461
|
+
&Icon {
|
|
462
|
+
margin-top: 2px;
|
|
463
|
+
color: @gray-dark;
|
|
464
|
+
font-size: 16px;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
&Button {
|
|
468
|
+
.btn;
|
|
469
|
+
.btn-link;
|
|
470
|
+
.btn-multiline;
|
|
471
|
+
text-align: left;
|
|
472
|
+
padding: 0;
|
|
473
|
+
height: auto;
|
|
474
|
+
|
|
475
|
+
&:hover {
|
|
476
|
+
text-decoration: underline;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
&Separator {
|
|
482
|
+
margin-top: 5px;
|
|
483
|
+
margin-bottom: 5px;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
@@ -92,6 +92,9 @@ h2, h3, h4, h5, h6, [class*='text-size-h'] {
|
|
|
92
92
|
.text-decoration-underline { text-decoration: underline !important }
|
|
93
93
|
.text-decoration-line-through { text-decoration: line-through !important }
|
|
94
94
|
|
|
95
|
+
.hover-text-decoration-underline:hover { text-decoration: underline !important }
|
|
96
|
+
.hover-text-decoration-none:hover { text-decoration: none !important }
|
|
97
|
+
|
|
95
98
|
/* Text - Decoration Hover */
|
|
96
99
|
.hover-text-decoration-none:hover { text-decoration: none !important }
|
|
97
100
|
|