@rio-cloud/rio-uikit 0.15.0-beta-46 → 0.15.0

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.
Files changed (184) hide show
  1. package/README.md +197 -192
  2. package/lib/components/actionBarItem/ActionBarItem.js +9 -0
  3. package/lib/components/actionBarItem/ActionBarItemList.js +38 -0
  4. package/lib/components/actionBarItem/ActionBarItemListItem.js +51 -0
  5. package/lib/components/actionBarItem/ActionBarItemListSeparator.js +37 -0
  6. package/lib/components/actionBarItem/ActionBarOverlay.js +2 -2
  7. package/lib/components/animatedNumber/AnimatedNumber.js +81 -0
  8. package/lib/components/applicationHeader/ApplicationHeader.js +4 -1
  9. package/lib/components/applicationLayout/ApplicationLayoutBody.js +3 -1
  10. package/lib/components/assetTree/AssetTree.less +3 -2
  11. package/lib/components/assetTree/Tree.js +3 -3
  12. package/lib/components/autosuggest/AutoSuggest.js +5 -3
  13. package/lib/components/bottomSheet/BottomSheet.js +157 -0
  14. package/lib/components/browserWarning/BrowserWarningMessageDE.js +1 -1
  15. package/lib/components/browserWarning/BrowserWarningMessageEN.js +1 -1
  16. package/lib/components/button/Button.js +127 -7
  17. package/lib/components/button/ToggleButton.js +11 -108
  18. package/lib/components/charts/BarChart.js +4 -3
  19. package/lib/components/charts/ChartNeedle.js +2 -2
  20. package/lib/components/charts/PieChart.js +11 -6
  21. package/lib/components/charts/RadialBarChart.js +4 -1
  22. package/lib/components/charts/chartHelper.js +3 -3
  23. package/lib/components/checkbox/Checkbox.js +127 -171
  24. package/lib/components/checkbox/Checkbox.less +4 -2
  25. package/lib/components/clearableInput/ClearableInput.js +2 -2
  26. package/lib/components/clearableInput/ClearableInput.less +2 -1
  27. package/lib/components/dataTabs/DataTabs.js +78 -120
  28. package/lib/components/datepicker/DatePicker.js +41 -72
  29. package/lib/components/datepicker/DatePicker.less +35 -5
  30. package/lib/components/datepicker/DateRangePicker.js +3 -3
  31. package/lib/components/dialog/Dialog.js +2 -2
  32. package/lib/components/dialog/InfoDialog.js +2 -2
  33. package/lib/components/dialog/MediaDialog.js +2 -2
  34. package/lib/components/dialog/SaveDialog.js +2 -2
  35. package/lib/components/dialog/SimpleDialog.js +2 -2
  36. package/lib/components/dialog/SplitDialog.js +2 -2
  37. package/lib/components/driverName/DriverName.js +1 -1
  38. package/lib/components/dropdown/ButtonDropdown.js +2 -2
  39. package/lib/components/dropdown/DropdownSubmenu.less +2 -2
  40. package/lib/components/fade/Fade.js +2 -2
  41. package/lib/components/filepicker/FilePicker.js +2 -2
  42. package/lib/components/listMenu/ListMenu.js +2 -2
  43. package/lib/components/loadMore/LoadMoreButton.js +1 -1
  44. package/lib/components/map/components/Map.js +2 -2
  45. package/lib/components/map/components/constants.js +1 -1
  46. package/lib/components/map/components/features/Route.js +2 -2
  47. package/lib/components/map/components/features/basics/MapLayerGroup.js +2 -2
  48. package/lib/components/map/components/features/basics/marker/Marker.js +2 -1
  49. package/lib/components/map/components/features/basics/marker/TextMarker.js +1 -1
  50. package/lib/components/map/components/features/layers/MarkerLayer.js +2 -2
  51. package/lib/components/map/components/features/layers/clustering/SimpleClusterLayer.js +2 -2
  52. package/lib/components/map/utils/eventHandling.js +5 -4
  53. package/lib/components/map/utils/hooks.js +1 -1
  54. package/lib/components/map/utils/validation.js +1 -1
  55. package/lib/components/numberControl/NumberControl.js +165 -145
  56. package/lib/components/numberInput/NumberInput.js +152 -233
  57. package/lib/components/onboarding/OnboardingTip.js +1 -1
  58. package/lib/components/overlay/OverlayTrigger.js +2 -1
  59. package/lib/components/radiobutton/RadioButton.js +116 -148
  60. package/lib/components/radiobutton/RadioButton.less +10 -6
  61. package/lib/components/resizer/Resizer.less +2 -2
  62. package/lib/components/selects/BaseDropdownMenu.js +2 -2
  63. package/lib/components/selects/DropdownHeader.js +2 -6
  64. package/lib/components/spinner/Spinner.js +1 -1
  65. package/lib/components/spinner/Spinner.less +2 -2
  66. package/lib/components/states/MaintenanceState.js +25 -0
  67. package/lib/components/states/baseStatePropTypes.js +1 -1
  68. package/lib/components/supportMarker/toggleSupportMarker.js +1 -1
  69. package/lib/components/table/SortArrows.js +1 -1
  70. package/lib/components/table/TableCardsSorting.js +7 -7
  71. package/lib/components/table/TableSettingsDialog.js +2 -2
  72. package/lib/components/table/TableSettingsListItem.js +1 -1
  73. package/lib/components/teaser/Teaser.js +1 -1
  74. package/lib/components/timepicker/TimePicker.js +10 -2
  75. package/lib/components/tooltip/Tooltip.js +4 -4
  76. package/lib/components/tooltip/Tooltip.less +0 -10
  77. package/lib/es/ActionBarItem.d.ts +6 -0
  78. package/lib/es/ActionBarItemList.d.ts +5 -0
  79. package/lib/es/ActionBarItemList.js +15 -0
  80. package/lib/es/ActionBarItemListItem.d.ts +5 -0
  81. package/lib/es/ActionBarItemListItem.js +15 -0
  82. package/lib/es/ActionBarItemListSeparator.d.ts +5 -0
  83. package/lib/es/ActionBarItemListSeparator.js +15 -0
  84. package/lib/es/AnimatedNumber.d.ts +5 -0
  85. package/lib/es/AnimatedNumber.js +15 -0
  86. package/lib/es/BottomSheet.d.ts +5 -0
  87. package/lib/es/BottomSheet.js +15 -0
  88. package/lib/es/DeviceUtils.d.ts +5 -0
  89. package/lib/es/MaintenanceState.d.ts +5 -0
  90. package/lib/es/MaintenanceState.js +15 -0
  91. package/lib/es/SortDirection.d.ts +6 -0
  92. package/lib/es/SortDirection.js +13 -0
  93. package/lib/es/SortUtils.d.ts +6 -0
  94. package/lib/es/SortUtils.js +19 -0
  95. package/lib/es/SupportMarker.js +15 -0
  96. package/lib/es/deviceUtils.js +14 -2
  97. package/lib/es/routeUtils.js +6 -6
  98. package/lib/es/useAfterMount.d.ts +4 -0
  99. package/lib/es/useAfterMount.js +15 -0
  100. package/lib/es/useClickOutside.d.ts +4 -0
  101. package/lib/es/useClickOutside.js +15 -0
  102. package/lib/es/useClipboard.d.ts +4 -0
  103. package/lib/es/useClipboard.js +15 -0
  104. package/lib/es/useDebugInfo.d.ts +4 -0
  105. package/lib/es/useDebugInfo.js +15 -0
  106. package/lib/es/useEffectOnce.d.ts +4 -0
  107. package/lib/es/useEffectOnce.js +15 -0
  108. package/lib/es/useElementSize.d.ts +4 -0
  109. package/lib/es/useElementSize.js +15 -0
  110. package/lib/es/useEsc.d.ts +4 -0
  111. package/lib/es/useEsc.js +15 -0
  112. package/lib/es/useEvent.d.ts +4 -0
  113. package/lib/es/useEvent.js +15 -0
  114. package/lib/es/useInterval.d.ts +4 -0
  115. package/lib/es/useInterval.js +15 -0
  116. package/lib/es/useKey.d.ts +4 -0
  117. package/lib/es/useKey.js +15 -0
  118. package/lib/es/useLocalStorage.d.ts +4 -0
  119. package/lib/es/useLocalStorage.js +13 -0
  120. package/lib/es/useOnMount.js +15 -0
  121. package/lib/es/useOnScreen.d.ts +4 -0
  122. package/lib/es/useOnScreen.js +15 -0
  123. package/lib/es/useOnlineStatus.d.ts +4 -0
  124. package/lib/es/useOnlineStatus.js +15 -0
  125. package/lib/es/useRenderCount.d.ts +4 -0
  126. package/lib/es/useRenderCount.js +15 -0
  127. package/lib/es/useSessionStorage.d.ts +4 -0
  128. package/lib/es/useSessionStorage.js +13 -0
  129. package/lib/es/useStateWithValidation.d.ts +4 -0
  130. package/lib/es/useStateWithValidation.js +15 -0
  131. package/lib/es/useTimeout.d.ts +4 -0
  132. package/lib/es/useTimeout.js +15 -0
  133. package/lib/es/useWindowResize.d.ts +4 -0
  134. package/lib/es/useWindowResize.js +15 -0
  135. package/lib/hooks/useDebugInfo.js +55 -0
  136. package/lib/hooks/useInterval.js +30 -0
  137. package/lib/hooks/useOnScreen.js +46 -0
  138. package/lib/hooks/useOnlineStatus.js +30 -0
  139. package/lib/hooks/useRenderCount.js +17 -0
  140. package/lib/hooks/useStateWithValidation.js +33 -0
  141. package/lib/hooks/useStorage.js +53 -0
  142. package/lib/hooks/useTimeout.js +9 -6
  143. package/lib/index.js +274 -266
  144. package/lib/mapIndex.js +72 -72
  145. package/lib/style/css/_exports/man-uikit.less +1 -0
  146. package/lib/style/css/_exports/rio-buyButton.less +5 -0
  147. package/lib/style/css/_exports/rio-uikit-core.less +2 -2
  148. package/lib/style/css/_exports/rio-uikit-print-utilities.less +21 -0
  149. package/lib/style/css/_exports/rio-uikit-responsive-utilities.less +2 -1
  150. package/lib/style/css/_exports/rio-uikit.less +1 -0
  151. package/lib/style/css/_exports/rio-website.less +131 -0
  152. package/lib/style/css/_exports/vw-uikit.less +2 -1
  153. package/lib/style/css/bootstrap/badges.less +0 -12
  154. package/lib/style/css/bootstrap/dropdowns.less +13 -13
  155. package/lib/style/css/bootstrap/type.less +11 -4
  156. package/lib/style/css/rio-theme/badges.less +48 -1
  157. package/lib/style/css/rio-theme/button-groups.less +1 -1
  158. package/lib/style/css/rio-theme/buttons.less +58 -16
  159. package/lib/style/css/rio-theme/carousel.less +1 -1
  160. package/lib/style/css/rio-theme/dropdowns.less +6 -26
  161. package/lib/style/css/rio-theme/navbar.less +46 -3
  162. package/lib/style/css/rio-theme/navs.less +19 -0
  163. package/lib/style/css/rio-theme/pagination.less +1 -1
  164. package/lib/style/css/utils/_imports.less +82 -0
  165. package/lib/style/css/utils/animations/translate.less +4 -1
  166. package/lib/style/css/utils/responsive/border.less +27 -19
  167. package/lib/style/css/utils/responsive/display.less +2 -0
  168. package/lib/style/css/utils/responsive/grid.less +6 -0
  169. package/lib/style/css/utils/responsive/sizing.less +1 -1
  170. package/lib/style/css/utils/text.less +3 -0
  171. package/lib/style/fonts/rioglyph/rioglyph.less +74 -14
  172. package/lib/style/fonts/rioglyph/rioglyph.svg +106 -34
  173. package/lib/style/fonts/rioglyph/rioglyph.ttf +0 -0
  174. package/lib/style/fonts/rioglyph/rioglyph.woff +0 -0
  175. package/lib/types.ts +139 -22
  176. package/lib/utils/SortUtils.js +54 -0
  177. package/lib/utils/buttonEffect.js +68 -0
  178. package/lib/utils/deviceUtils.js +1 -5
  179. package/lib/utils/logDeprecatedWarnings.js +1 -1
  180. package/lib/utils/logPropError.js +1 -1
  181. package/lib/utils/routeUtils.js +7 -6
  182. package/lib/utils/scrollItemIntoView.js +1 -1
  183. package/lib/version.json +1 -1
  184. package/package.json +73 -75
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, "SingleMapMarker", {
8
+ Object.defineProperty(exports, "Circle", {
9
9
  enumerable: true,
10
10
  get: function get() {
11
- return _SingleMapMarker2.default;
11
+ return _Circle2.default;
12
12
  }
13
13
  });
14
- Object.defineProperty(exports, "ClusterMapMarker", {
14
+ Object.defineProperty(exports, "ClusterLayer", {
15
15
  enumerable: true,
16
16
  get: function get() {
17
- return _ClusterMapMarker2.default;
17
+ return _ClusterLayer2.default;
18
18
  }
19
19
  });
20
- Object.defineProperty(exports, "Marker", {
20
+ Object.defineProperty(exports, "ClusterMapMarker", {
21
21
  enumerable: true,
22
22
  get: function get() {
23
- return _Marker2.default;
23
+ return _ClusterMapMarker2.default;
24
24
  }
25
25
  });
26
- Object.defineProperty(exports, "Map", {
26
+ Object.defineProperty(exports, "ClusterUtils", {
27
27
  enumerable: true,
28
28
  get: function get() {
29
- return _Map2.default;
29
+ return _clustering.ClusterUtils;
30
30
  }
31
31
  });
32
- Object.defineProperty(exports, "DomMarker", {
32
+ Object.defineProperty(exports, "ContextMenu", {
33
33
  enumerable: true,
34
34
  get: function get() {
35
- return _DomMarker2.default;
35
+ return _ContextMenu2.default;
36
36
  }
37
37
  });
38
- Object.defineProperty(exports, "TextMarker", {
38
+ Object.defineProperty(exports, "ContextMenuItem", {
39
39
  enumerable: true,
40
40
  get: function get() {
41
- return _TextMarker2.default;
41
+ return _ContextMenuItem2.default;
42
42
  }
43
43
  });
44
- Object.defineProperty(exports, "MapLayerGroup", {
44
+ Object.defineProperty(exports, "DomMarker", {
45
45
  enumerable: true,
46
46
  get: function get() {
47
- return _MapLayerGroup2.default;
47
+ return _DomMarker2.default;
48
48
  }
49
49
  });
50
- Object.defineProperty(exports, "Polygon", {
50
+ Object.defineProperty(exports, "EventUtils", {
51
51
  enumerable: true,
52
52
  get: function get() {
53
- return _Polygon2.default;
53
+ return _eventHandling.EventUtils;
54
54
  }
55
55
  });
56
- Object.defineProperty(exports, "Polyline", {
56
+ Object.defineProperty(exports, "IncidentsLayer", {
57
57
  enumerable: true,
58
58
  get: function get() {
59
- return _Polyline2.default;
59
+ return _IncidentsLayer2.default;
60
60
  }
61
61
  });
62
- Object.defineProperty(exports, "Route", {
62
+ Object.defineProperty(exports, "Map", {
63
63
  enumerable: true,
64
64
  get: function get() {
65
- return _Route2.default;
65
+ return _Map2.default;
66
66
  }
67
67
  });
68
- Object.defineProperty(exports, "ClusterLayer", {
68
+ Object.defineProperty(exports, "MapBoundingBoxButton", {
69
69
  enumerable: true,
70
70
  get: function get() {
71
- return _ClusterLayer2.default;
71
+ return _MapBoundingBoxButton2.default;
72
72
  }
73
73
  });
74
- Object.defineProperty(exports, "SimpleClusterLayer", {
74
+ Object.defineProperty(exports, "MapCenterMarkerButton", {
75
75
  enumerable: true,
76
76
  get: function get() {
77
- return _SimpleClusterLayer2.default;
77
+ return _MapCenterMarkerButton2.default;
78
78
  }
79
79
  });
80
- Object.defineProperty(exports, "MarkerLayer", {
80
+ Object.defineProperty(exports, "MapClusterSettings", {
81
81
  enumerable: true,
82
82
  get: function get() {
83
- return _MarkerLayer2.default;
83
+ return _MapClusterSettings2.default;
84
84
  }
85
85
  });
86
- Object.defineProperty(exports, "TrafficLayer", {
86
+ Object.defineProperty(exports, "MapCustomerPoiSettingsItem", {
87
87
  enumerable: true,
88
88
  get: function get() {
89
- return _TrafficLayer2.default;
89
+ return _MapCustomerPoiSettingsItem2.default;
90
90
  }
91
91
  });
92
- Object.defineProperty(exports, "TruckLayer", {
92
+ Object.defineProperty(exports, "MapLayerGroup", {
93
93
  enumerable: true,
94
94
  get: function get() {
95
- return _TruckLayer2.default;
95
+ return _MapLayerGroup2.default;
96
96
  }
97
97
  });
98
- Object.defineProperty(exports, "IncidentsLayer", {
98
+ Object.defineProperty(exports, "MapLayerIncidentsItem", {
99
99
  enumerable: true,
100
100
  get: function get() {
101
- return _IncidentsLayer2.default;
101
+ return _MapLayerIncidentsItem2.default;
102
102
  }
103
103
  });
104
- Object.defineProperty(exports, "Circle", {
104
+ Object.defineProperty(exports, "MapLayerRoadRestrictionsItem", {
105
105
  enumerable: true,
106
106
  get: function get() {
107
- return _Circle2.default;
107
+ return _MapLayerRoadRestrictionsItem2.default;
108
108
  }
109
109
  });
110
- Object.defineProperty(exports, "MapSettings", {
110
+ Object.defineProperty(exports, "MapLayerSettings", {
111
111
  enumerable: true,
112
112
  get: function get() {
113
- return _MapSettings2.default;
113
+ return _MapLayerSettings2.default;
114
114
  }
115
115
  });
116
- Object.defineProperty(exports, "MapSettingsPanel", {
116
+ Object.defineProperty(exports, "MapLayerTrafficItem", {
117
117
  enumerable: true,
118
118
  get: function get() {
119
- return _MapSettingsPanel2.default;
119
+ return _MapLayerTrafficItem2.default;
120
120
  }
121
121
  });
122
- Object.defineProperty(exports, "MapSettingsTile", {
122
+ Object.defineProperty(exports, "MapLockMarkerButton", {
123
123
  enumerable: true,
124
124
  get: function get() {
125
- return _MapSettingsTile2.default;
125
+ return _MapLockMarkerButton2.default;
126
126
  }
127
127
  });
128
- Object.defineProperty(exports, "MapClusterSettings", {
128
+ Object.defineProperty(exports, "MapSettings", {
129
129
  enumerable: true,
130
130
  get: function get() {
131
- return _MapClusterSettings2.default;
131
+ return _MapSettings2.default;
132
132
  }
133
133
  });
134
- Object.defineProperty(exports, "MapLayerSettings", {
134
+ Object.defineProperty(exports, "MapSettingsItem", {
135
135
  enumerable: true,
136
136
  get: function get() {
137
- return _MapLayerSettings2.default;
137
+ return _MapSettingsItem2.default;
138
138
  }
139
139
  });
140
- Object.defineProperty(exports, "MapTypeSettings", {
140
+ Object.defineProperty(exports, "MapSettingsPanel", {
141
141
  enumerable: true,
142
142
  get: function get() {
143
- return _MapTypeSettings2.default;
143
+ return _MapSettingsPanel2.default;
144
144
  }
145
145
  });
146
- Object.defineProperty(exports, "MapSettingsItem", {
146
+ Object.defineProperty(exports, "MapSettingsTile", {
147
147
  enumerable: true,
148
148
  get: function get() {
149
- return _MapSettingsItem2.default;
149
+ return _MapSettingsTile2.default;
150
150
  }
151
151
  });
152
- Object.defineProperty(exports, "MapCustomerPoiSettingsItem", {
152
+ Object.defineProperty(exports, "MapTypeSettings", {
153
153
  enumerable: true,
154
154
  get: function get() {
155
- return _MapCustomerPoiSettingsItem2.default;
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, "MapLayerIncidentsItem", {
164
+ Object.defineProperty(exports, "Marker", {
165
165
  enumerable: true,
166
166
  get: function get() {
167
- return _MapLayerIncidentsItem2.default;
167
+ return _Marker2.default;
168
168
  }
169
169
  });
170
- Object.defineProperty(exports, "MapLayerRoadRestrictionsItem", {
170
+ Object.defineProperty(exports, "MarkerLayer", {
171
171
  enumerable: true,
172
172
  get: function get() {
173
- return _MapLayerRoadRestrictionsItem2.default;
173
+ return _MarkerLayer2.default;
174
174
  }
175
175
  });
176
- Object.defineProperty(exports, "MapLayerTrafficItem", {
176
+ Object.defineProperty(exports, "Polygon", {
177
177
  enumerable: true,
178
178
  get: function get() {
179
- return _MapLayerTrafficItem2.default;
179
+ return _Polygon2.default;
180
180
  }
181
181
  });
182
- Object.defineProperty(exports, "MapBoundingBoxButton", {
182
+ Object.defineProperty(exports, "Polyline", {
183
183
  enumerable: true,
184
184
  get: function get() {
185
- return _MapBoundingBoxButton2.default;
185
+ return _Polyline2.default;
186
186
  }
187
187
  });
188
- Object.defineProperty(exports, "MapCenterMarkerButton", {
188
+ Object.defineProperty(exports, "PositionUtils", {
189
189
  enumerable: true,
190
190
  get: function get() {
191
- return _MapCenterMarkerButton2.default;
191
+ return _positions.PositionUtils;
192
192
  }
193
193
  });
194
- Object.defineProperty(exports, "MapLockMarkerButton", {
194
+ Object.defineProperty(exports, "Route", {
195
195
  enumerable: true,
196
196
  get: function get() {
197
- return _MapLockMarkerButton2.default;
197
+ return _Route2.default;
198
198
  }
199
199
  });
200
- Object.defineProperty(exports, "EventUtils", {
200
+ Object.defineProperty(exports, "SimpleClusterLayer", {
201
201
  enumerable: true,
202
202
  get: function get() {
203
- return _eventHandling.EventUtils;
203
+ return _SimpleClusterLayer2.default;
204
204
  }
205
205
  });
206
- Object.defineProperty(exports, "ClusterUtils", {
206
+ Object.defineProperty(exports, "SingleMapMarker", {
207
207
  enumerable: true,
208
208
  get: function get() {
209
- return _clustering.ClusterUtils;
209
+ return _SingleMapMarker2.default;
210
210
  }
211
211
  });
212
- Object.defineProperty(exports, "PositionUtils", {
212
+ Object.defineProperty(exports, "TextMarker", {
213
213
  enumerable: true,
214
214
  get: function get() {
215
- return _positions.PositionUtils;
215
+ return _TextMarker2.default;
216
216
  }
217
217
  });
218
- Object.defineProperty(exports, "ContextMenu", {
218
+ Object.defineProperty(exports, "TrafficLayer", {
219
219
  enumerable: true,
220
220
  get: function get() {
221
- return _ContextMenu2.default;
221
+ return _TrafficLayer2.default;
222
222
  }
223
223
  });
224
- Object.defineProperty(exports, "ContextMenuItem", {
224
+ Object.defineProperty(exports, "TruckLayer", {
225
225
  enumerable: true,
226
226
  get: function get() {
227
- return _ContextMenuItem2.default;
227
+ return _TruckLayer2.default;
228
228
  }
229
229
  });
230
230
 
@@ -10,6 +10,7 @@
10
10
  @md: true;
11
11
  @lg: true;
12
12
  @xl: true;
13
+ @print: false;
13
14
  );
14
15
 
15
16
  // RIO Theme // Fonts
@@ -83,6 +83,11 @@
83
83
  align-items: center;
84
84
  justify-content: space-between;
85
85
 
86
+ .btn:hover {
87
+ transform: none !important;
88
+ box-shadow: none !important;
89
+ }
90
+
86
91
  .buyButtonPrice {
87
92
  flex: 1 0;
88
93
  }
@@ -71,7 +71,7 @@
71
71
  @import (less) '../rio-theme/theme.less';
72
72
 
73
73
  // RIO Theme // Utils
74
- @import (less) '../utils/responsive/_imports.less';
74
+ @import (less) '../utils/_imports.less';
75
75
 
76
76
  .import-utilities(
77
77
  @default: true;
@@ -81,6 +81,7 @@
81
81
  @md: false;
82
82
  @lg: false;
83
83
  @xl: false;
84
+ @print: false;
84
85
  );
85
86
 
86
87
  // Bootstrap // Responsive Utilities
@@ -97,7 +98,6 @@
97
98
  @import (less) '../../../components/applicationLayout/ApplicationLayout.less';
98
99
  @import (less) '../../../components/assetTree/AssetTree.less';
99
100
  @import (less) '../../../components/autosuggest/AutoSuggest.less';
100
- @import (less) '../../../components/button/ToggleButton.less';
101
101
  @import (less) '../../../components/checkbox/Checkbox.less';
102
102
  @import (less) '../../../components/clearableInput/ClearableInput.less';
103
103
  @import (less) '../../../components/counter/Counter.less';
@@ -0,0 +1,21 @@
1
+ // RIO Theme Imports
2
+ @import (less) '../rio-theme/variables.less';
3
+ @import (less) '../rio-theme/colors.less';
4
+ @import (less) '../rio-theme/screens.less';
5
+ @import (less) '../shared/text.less';
6
+ @import (less) '../rio-theme/mixins/_mixins.less';
7
+
8
+ // RIO Theme // Utils
9
+ @import (less) '../utils/_imports.less';
10
+
11
+ // RIO Theme // Utility Classes
12
+ .import-utilities(
13
+ @default: false;
14
+ @xs: false;
15
+ @ls: false;
16
+ @sm: false;
17
+ @md: false;
18
+ @lg: false;
19
+ @xl: false;
20
+ @print: true;
21
+ );
@@ -6,7 +6,7 @@
6
6
  @import (less) '../rio-theme/mixins/_mixins.less';
7
7
 
8
8
  // RIO Theme // Utils
9
- @import (less) '../utils/responsive/_imports.less';
9
+ @import (less) '../utils/_imports.less';
10
10
 
11
11
  // RIO Theme // Utility Classes
12
12
  .import-utilities(
@@ -17,4 +17,5 @@
17
17
  @md: true;
18
18
  @lg: true;
19
19
  @xl: true;
20
+ @print: false;
20
21
  );
@@ -10,6 +10,7 @@
10
10
  @md: true;
11
11
  @lg: true;
12
12
  @xl: true;
13
+ @print: false;
13
14
  );
14
15
 
15
16
  // RIO Theme // Fonts
@@ -10,6 +10,7 @@
10
10
  @md: true;
11
11
  @lg: true;
12
12
  @xl: true;
13
+ @print: false;
13
14
  );
14
15
 
15
16
  // RIO Theme // Fonts
@@ -183,6 +184,10 @@ html.show-handheld-navigation {
183
184
  }
184
185
  }
185
186
 
187
+ body .module-content {
188
+ overflow: hidden;
189
+ }
190
+
186
191
  .ApplicationHeader {
187
192
  .navbar-brand {
188
193
  background-image: url('@{cdnBase}/svg/common/ico_rio.svg') !important;
@@ -630,6 +635,35 @@ html.show-handheld-navigation {
630
635
  }
631
636
  }
632
637
 
638
+ &.headline-block {
639
+ .section-content-container-row {
640
+ display: flex;
641
+ flex-direction: column;
642
+
643
+ .section-content-container-headline {
644
+ padding: 10px 20px;
645
+ background: @color-black;
646
+ text-transform: uppercase;
647
+ width: fit-content;
648
+
649
+ &:before {
650
+ display: block;
651
+ content: "+";
652
+ width: 20px;
653
+ height: 20px;
654
+ position: absolute;
655
+ top: 0px;
656
+ left: 0px;
657
+ transform: translate(-100%, -100%);
658
+ text-align: center;
659
+ line-height: 20px;
660
+ color: @color-black;
661
+ font-size: 40px;
662
+ }
663
+ }
664
+ }
665
+ }
666
+
633
667
  // Section Wrapper Inner Container
634
668
  .section-content-container {
635
669
  height: 100%;
@@ -1495,12 +1529,28 @@ html.show-handheld-navigation {
1495
1529
  &.col-md-4 {
1496
1530
  @media (min-width: @screen-md) { width: 50%; }
1497
1531
  }
1532
+
1533
+ &.col-ls-4 {
1534
+ @media (min-width: @screen-ls) { width: 50%; }
1535
+ }
1498
1536
  }
1499
1537
  }
1500
1538
  }
1501
1539
  }
1502
1540
  }
1503
1541
 
1542
+ &-double-col-padding {
1543
+ .section-layout > .section-layout-container {
1544
+ padding-left: 0;
1545
+ padding-right: 0;
1546
+
1547
+ [class*="col-"] {
1548
+ padding-left: 20px;
1549
+ padding-right: 20px;
1550
+ }
1551
+ }
1552
+ }
1553
+
1504
1554
  &-man {
1505
1555
  .section-layout {
1506
1556
  .section-layout-container {
@@ -1863,6 +1913,30 @@ blockquote {
1863
1913
  }
1864
1914
  }
1865
1915
 
1916
+ // Video Player
1917
+ ._video-embed-container {
1918
+ background: @color-black;
1919
+
1920
+ .data-privacy-modal {
1921
+ @media (max-width: @screen-ls) {
1922
+ p {
1923
+ display: none;
1924
+ }
1925
+
1926
+ .btn {
1927
+ height: auto;
1928
+ line-height: 1.25;
1929
+ white-space: pre-wrap;
1930
+ }
1931
+ }
1932
+ }
1933
+ }
1934
+
1935
+ [class*="btn-"]:hover {
1936
+ transform: none !important;
1937
+ box-shadow: none !important;
1938
+ }
1939
+
1866
1940
  // cookie disclaimer
1867
1941
  #cookieDisclaimer > .position-absolute {
1868
1942
  position: fixed !important;
@@ -1980,4 +2054,61 @@ form[id*="contactForm"] {
1980
2054
  padding-bottom: 56.25%;
1981
2055
  }
1982
2056
  }
2057
+ }
2058
+
2059
+ // section clippig
2060
+
2061
+ .section-wrapper {
2062
+ &[class*="clip-"]:after {
2063
+ content: "";
2064
+ background: @color-white;
2065
+ width: 100%;
2066
+ position: absolute;
2067
+ z-index: 1;
2068
+ }
2069
+
2070
+ &[class*="clip-top"]:after {
2071
+ top: 0;
2072
+ }
2073
+
2074
+ &[class*="clip-bottom"]::after {
2075
+ bottom: 0;
2076
+ }
2077
+
2078
+ &[class*="clip-white"]:after {
2079
+ background: @color-white
2080
+ }
2081
+
2082
+ &[class*="clip-lightest"]::after {
2083
+ background: @gray-lightest
2084
+ }
2085
+
2086
+ &.clip-top-ltr:after {
2087
+ clip-path: polygon(0 0, 100% 0, 100% 100%);
2088
+ }
2089
+
2090
+ &.clip-top-rtl:after {
2091
+ clip-path: polygon(0 0, 100% 0, 0 100%);
2092
+ }
2093
+
2094
+ &.clip-bottom-ltr:after {
2095
+ clip-path: polygon(0 100%, 100% 0, 100% 100%);
2096
+ }
2097
+
2098
+ &.clip-bottom-rtl:after {
2099
+ clip-path: polygon(0 0, 100% 100%, 0 100%);
2100
+ }
2101
+ }
2102
+
2103
+ @media (max-width: @screen-ls) {
2104
+ .section-wrapper[class*="clip-"]:after {
2105
+ height: 0;
2106
+ padding-bottom: 5%;
2107
+ }
2108
+ }
2109
+
2110
+ @media (min-width: @screen-ls) {
2111
+ .section-wrapper[class*="clip-"]:after {
2112
+ height: 50px;
2113
+ }
1983
2114
  }
@@ -10,6 +10,7 @@
10
10
  @md: true;
11
11
  @lg: true;
12
12
  @xl: true;
13
+ @print: false;
13
14
  );
14
15
 
15
16
  // RIO Theme // Fonts
@@ -19,7 +20,7 @@
19
20
 
20
21
  @logo-height: 42px;
21
22
  @logo-width: 204px;
22
- @navbar-height: 50px + @logo-height * 3;
23
+ @navbar-height: 178px;
23
24
 
24
25
  @color-white: #ffffff;
25
26
  @color-black: #000000;
@@ -18,11 +18,6 @@
18
18
  background-color: @badge-bg;
19
19
  border-radius: @badge-border-radius;
20
20
 
21
- // Empty badges collapse automatically (not available in IE8)
22
- &:empty {
23
- display: none;
24
- }
25
-
26
21
  // Quick fix for badges in buttons
27
22
  .btn & {
28
23
  position: relative;
@@ -45,13 +40,6 @@
45
40
  }
46
41
  }
47
42
 
48
- // Account for badges in navs
49
- .list-group-item.active > &,
50
- .nav-pills > .active > a > & {
51
- color: @badge-active-color;
52
- background-color: @badge-active-bg;
53
- }
54
-
55
43
  .list-group-item > & {
56
44
  float: right;
57
45
  }
@@ -29,24 +29,24 @@
29
29
 
30
30
  // The dropdown menu (ul)
31
31
  .dropdown-menu {
32
- position: absolute;
33
- top: 100%;
34
- left: 0;
35
- z-index: @zindex-dropdown;
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
- margin: 2px 0 0; // override default ul
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
- background-color: @dropdown-bg;
45
- border: 1px solid @dropdown-fallback-border; // IE8 fallback
46
- border: 1px solid @dropdown-border;
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
  //
@@ -94,10 +94,17 @@ mark,
94
94
  .text-nowrap { white-space: nowrap; }
95
95
 
96
96
  // Transformation
97
- .text-lowercase { text-transform: lowercase; }
98
- .text-uppercase { text-transform: uppercase; }
99
- .text-capitalize { text-transform: capitalize; }
100
- .text-transform-none { text-transform: none; }
97
+ .text-transform-none { text-transform: none; }
98
+ .text-capitalize { text-transform: capitalize; }
99
+ .text-lowercase { text-transform: lowercase; }
100
+ .text-uppercase { text-transform: uppercase; }
101
+
102
+ // uppercase only the first letter of the first
103
+ .text-capitalize-first-word {
104
+ &:first-letter {
105
+ text-transform: uppercase
106
+ }
107
+ }
101
108
 
102
109
  // Contextual colors
103
110
  .text-muted {