@rio-cloud/rio-uikit 0.15.1 → 0.16.0-beta-3
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/README.md +46 -3
- package/lib/components/actionBarItem/ActionBarItem.js +4 -4
- package/lib/components/actionBarItem/ActionBarItemPopoverContent.js +43 -0
- package/lib/components/actionBarItem/ActionBarOverlay.js +8 -3
- package/lib/components/applicationHeader/AppMenuDropdown.js +9 -13
- package/lib/components/applicationLayout/ApplicationLayout.js +2 -0
- package/lib/components/applicationLayout/ApplicationLayoutBody.js +5 -3
- package/lib/components/assetTree/AssetTree.js +1 -1
- package/lib/components/assetTree/Tree.js +2 -2
- package/lib/components/assetTree/TreeLeaf.js +9 -9
- package/lib/components/bottomSheet/BottomSheet.js +11 -7
- package/lib/components/browserWarning/BrowserIcons.js +76 -0
- package/lib/components/browserWarning/BrowserWarning.js +4 -4
- package/lib/components/browserWarning/BrowserWarningMessageDE.js +20 -22
- package/lib/components/browserWarning/BrowserWarningMessageEN.js +20 -22
- package/lib/components/carousel/Carousel.js +7 -426
- package/lib/components/checkbox/Checkbox.js +4 -4
- package/lib/components/datepicker/DatePicker.js +15 -6
- package/lib/components/dialog/ConfirmationDialog.js +8 -6
- package/lib/components/dialog/SaveDialog.js +3 -1
- package/lib/components/dropdown/ButtonDropdown.js +8 -11
- package/lib/components/filepicker/FilePicker.js +65 -96
- package/lib/components/listMenu/ListMenu.js +40 -23
- package/lib/components/map/components/features/old/MapSettings.js +5 -5
- package/lib/components/map/components/features/old/settings/MapClusterSettings.js +13 -13
- package/lib/components/map/components/features/old/settings/MapLayerSettings.js +15 -15
- package/lib/components/map/components/features/old/settings/MapTypeSettings.js +20 -20
- package/lib/components/map/components/features/settings/ZoomButtons.js +10 -10
- package/lib/components/map/components/features/settings/builtinSettings/MapClusterSettings.js +20 -18
- package/lib/components/map/components/features/settings/builtinSettings/MapLayerSettings.js +8 -8
- package/lib/components/map/components/features/settings/builtinSettings/MapTypeSettings.js +42 -32
- package/lib/components/map/components/features/settings/buttons/MapBoundingBoxButton.js +8 -8
- package/lib/components/map/components/features/settings/buttons/MapCenterMarkerButton.js +8 -8
- package/lib/components/map/components/features/settings/buttons/MapLockMarkerButton.js +8 -8
- package/lib/components/map/components/features/settings/items/MapCustomerPoiSettingsItem.js +8 -8
- package/lib/components/map/components/features/settings/items/MapLayerIncidentsItem.js +8 -6
- package/lib/components/map/components/features/settings/items/MapLayerRoadRestrictionsItem.js +8 -6
- package/lib/components/map/components/features/settings/items/MapLayerTrafficItem.js +8 -6
- package/lib/components/map/components/features/settings/items/MapWorkshopPoiSettingsItem.js +8 -8
- package/lib/components/map/icons/MapIcon.js +500 -0
- package/lib/components/numberInput/NumberInput.js +6 -6
- package/lib/components/onboarding/OnboardingTip.js +9 -9
- package/lib/components/states/NotBookedState.js +2 -2
- package/lib/components/table/TableSettingsDialogFooter.js +1 -1
- package/lib/components/teaser/Teaser.js +1 -1
- package/lib/components/teaser/TeaserContainer.js +8 -8
- package/lib/components/tooltip/Tooltip.js +5 -5
- package/lib/es/DeviceUtils.d.ts +4 -2
- package/lib/es/deviceUtils.js +12 -0
- package/lib/es/useFullscreen.d.ts +4 -0
- package/lib/es/useFullscreen.js +15 -0
- package/lib/hooks/useClipboard.js +2 -2
- package/lib/hooks/useFullscreen.js +242 -0
- package/lib/style/css/_exports/man-uikit.less +7 -5
- package/lib/style/css/_exports/rio-buyButton.less +30 -41
- package/lib/style/css/_exports/rio-uikit-core.less +106 -127
- package/lib/style/css/_exports/rio-uikit-print-utilities.less +6 -11
- package/lib/style/css/_exports/rio-uikit-responsive-utilities.less +6 -11
- package/lib/style/css/_exports/rio-uikit.less +5 -4
- package/lib/style/css/_exports/rio-website.less +41 -15
- package/lib/style/css/_exports/vw-uikit.less +10 -8
- package/lib/style/css/animations/_imports.less +9 -0
- package/lib/style/css/animations/collapse.less +16 -0
- package/lib/style/css/animations/fade.less +28 -0
- package/lib/style/css/animations/pinging.less +7 -0
- package/lib/style/css/animations/rotate.less +52 -0
- package/lib/style/css/animations/scale.less +35 -0
- package/lib/style/css/animations/slide.less +39 -0
- package/lib/style/css/animations/spinning.less +4 -0
- package/lib/style/css/animations/transition.less +129 -0
- package/lib/style/css/animations/translate.less +28 -0
- package/lib/style/css/components/Activity.less +93 -0
- package/lib/style/css/components/ApplicationHeader.less +438 -0
- package/lib/style/css/components/ApplicationLayout.less +236 -0
- package/lib/style/css/components/AssetTree.less +443 -0
- package/lib/style/css/components/AutoSuggest.less +22 -0
- package/lib/style/css/components/BottomSheet.less +14 -0
- package/lib/style/css/components/Carousel.less +212 -0
- package/lib/style/css/components/Checkbox.less +224 -0
- package/lib/style/css/components/ClearableInput.less +115 -0
- package/lib/style/css/components/Counter.less +142 -0
- package/lib/style/css/components/DataTabs.less +100 -0
- package/lib/style/css/components/DatePicker.less +391 -0
- package/lib/style/css/components/Dialog.less +482 -0
- package/lib/style/css/components/Dropdown.less +186 -0
- package/lib/style/css/components/Expander.less +196 -0
- package/lib/style/css/components/FilePicker.less +8 -0
- package/lib/style/css/components/ListMenu.less +77 -0
- package/lib/style/css/components/MapHere.less +91 -0
- package/lib/style/css/components/MapMarker.less +347 -0
- package/lib/style/css/components/MapSettings.less +140 -0
- package/lib/style/css/components/NoData.less +8 -0
- package/lib/style/css/components/Notification.less +234 -0
- package/lib/style/css/components/RadioButton.less +173 -0
- package/lib/style/css/components/Resizer.less +43 -0
- package/lib/style/css/components/Select.less +286 -0
- package/lib/style/css/components/Sidebar.less +157 -0
- package/lib/style/css/components/Slider.less +278 -0
- package/lib/style/css/components/Spinner.less +49 -0
- package/lib/style/css/components/StatsWidget.less +111 -0
- package/lib/style/css/components/SteppedProgressBar.less +323 -0
- package/lib/style/css/components/SupportMarker.less +34 -0
- package/lib/style/css/components/Switch.less +145 -0
- package/lib/style/css/components/TableSettingsDialog.less +96 -0
- package/lib/style/css/components/TableSortArrows.less +54 -0
- package/lib/style/css/components/TableToolbar.less +121 -0
- package/lib/style/css/components/Tag.less +246 -0
- package/lib/style/css/components/TagManager.less +4 -0
- package/lib/style/css/components/Teaser.less +12 -0
- package/lib/style/css/components/Timeline.less +69 -0
- package/lib/style/css/components/Tooltip.less +261 -0
- package/lib/style/css/design/alerts.less +55 -0
- package/lib/style/css/design/aspect-ratio.less +23 -0
- package/lib/style/css/design/badges.less +120 -0
- package/lib/style/css/design/blockquote.less +49 -0
- package/lib/style/css/design/border.less +192 -0
- package/lib/style/css/design/breadcrumbs.less +20 -0
- package/lib/style/css/design/button-groups.less +194 -0
- package/lib/style/css/design/buttons.less +540 -0
- package/lib/style/css/design/callouts.less +27 -0
- package/lib/style/css/design/caret.less +28 -0
- package/lib/style/css/design/close.less +12 -0
- package/lib/style/css/design/code.less +45 -0
- package/lib/style/css/design/colors.less +202 -0
- package/lib/style/css/design/cols.less +56 -0
- package/lib/style/css/design/container.less +29 -0
- package/lib/style/css/design/cursors.less +19 -0
- package/lib/style/css/design/custom.less +20 -0
- package/lib/style/css/design/ellipsis.less +46 -0
- package/lib/style/css/design/flexgrid.less +7 -0
- package/lib/style/css/design/fonts.less +318 -0
- package/lib/style/css/design/form-input-groups.less +245 -0
- package/lib/style/css/design/form-inputs.less +655 -0
- package/lib/style/css/design/iframe.less +80 -0
- package/lib/style/css/design/images.less +47 -0
- package/lib/style/css/design/labels.less +66 -0
- package/lib/style/css/design/list-group.less +95 -0
- package/lib/style/css/design/navs.less +254 -0
- package/lib/style/css/design/normalize.less +436 -0
- package/lib/style/css/design/opacity.less +26 -0
- package/lib/style/css/design/overflow.less +1 -0
- package/lib/style/css/design/pagination.less +161 -0
- package/lib/style/css/design/panels.less +105 -0
- package/lib/style/css/design/popovers.less +117 -0
- package/lib/style/css/design/position.less +16 -0
- package/lib/style/css/design/progress-bars.less +131 -0
- package/lib/style/css/design/responsive/_imports.less +68 -0
- package/lib/style/css/design/responsive/backgrounds.less +32 -0
- package/lib/style/css/design/responsive/display.less +9 -0
- package/lib/style/css/design/responsive/flexgrid.less +75 -0
- package/lib/style/css/design/responsive/floating.less +4 -0
- package/lib/style/css/design/responsive/gap.less +41 -0
- package/lib/style/css/design/responsive/hyphens.less +14 -0
- package/lib/style/css/design/responsive/margin.less +127 -0
- package/lib/style/css/design/responsive/overflow.less +16 -0
- package/lib/style/css/design/responsive/padding.less +71 -0
- package/lib/style/css/design/responsive/position.less +102 -0
- package/lib/style/css/design/responsive/sizing.less +115 -0
- package/lib/style/css/design/responsive/text.less +71 -0
- package/lib/style/css/design/responsive/visibility.less +115 -0
- package/lib/style/css/design/responsive-embed.less +31 -0
- package/lib/style/css/design/responsive-video.less +22 -0
- package/lib/style/css/design/rioglyph.less +24 -0
- package/lib/style/css/design/rounded.less +44 -0
- package/lib/style/css/design/shadows.less +65 -0
- package/lib/style/css/design/tables.less +854 -0
- package/lib/style/css/design/text.less +201 -0
- package/lib/style/css/design/theme.less +200 -0
- package/lib/style/css/design/thumbnails.less +29 -0
- package/lib/style/css/design/transition.less +33 -0
- package/lib/style/css/design/type.less +159 -0
- package/lib/style/css/design/utilities.less +75 -0
- package/lib/style/css/design/visibilty.less +38 -0
- package/lib/style/css/design/wells.less +17 -0
- package/lib/style/css/design/z-index.less +21 -0
- package/lib/style/css/mapping/breakpoint-map.less +44 -0
- package/lib/style/css/mapping/color-map.less +200 -0
- package/lib/style/css/mapping/cols-map.less +15 -0
- package/lib/style/css/mapping/numbers-map.less +16 -0
- package/lib/style/css/mapping/positions-map.less +21 -0
- package/lib/style/css/mapping/sizes-map.less +129 -0
- package/lib/style/css/mapping/spacings-map.less +28 -0
- package/lib/style/css/mixins/_mixins.less +13 -0
- package/lib/style/css/mixins/alerts.less +13 -0
- package/lib/style/css/mixins/border-radius.less +16 -0
- package/lib/style/css/mixins/buttons.less +117 -0
- package/lib/style/css/mixins/clearfix.less +9 -0
- package/lib/style/css/mixins/cols.less +59 -0
- package/lib/style/css/mixins/forms.less +61 -0
- package/lib/style/css/mixins/panels.less +27 -0
- package/lib/style/css/mixins/placeholder.less +17 -0
- package/lib/style/css/mixins/reset.less +27 -0
- package/lib/style/css/mixins/sizings.less +21 -0
- package/lib/style/css/mixins/spinner.less +30 -0
- package/lib/style/css/mixins/table.less +26 -0
- package/lib/style/css/mixins/tabs.less +4 -0
- package/lib/style/css/mixins/text.less +5 -0
- package/lib/style/css/print/print.less +1 -4
- package/lib/style/css/rio-theme/alerts.less +23 -61
- package/lib/style/css/rio-theme/badges.less +16 -28
- package/lib/style/css/rio-theme/blockquote.less +14 -97
- package/lib/style/css/rio-theme/mixins/alerts.less +13 -1
- package/lib/style/css/shared/colors.json +1 -1
- package/lib/style/css/shared/colors.less +11 -8
- package/lib/style/css/shared/text.less +6 -5
- package/lib/style/css/utils/responsive/grid.less +15 -6
- package/lib/style/css/variables.less +179 -0
- package/lib/style/fonts/rioglyph/rioglyph.less +6 -11
- package/lib/style/fonts/rioglyph/rioglyph.woff +0 -0
- package/lib/types.ts +70 -59
- package/lib/utils/buttonEffect.js +3 -1
- package/lib/utils/deviceUtils.js +40 -3
- package/lib/utils/init.js +22 -7
- package/lib/version.json +1 -1
- package/package.json +47 -31
|
@@ -0,0 +1,443 @@
|
|
|
1
|
+
@asset-tree-shadow-color: rgba(0, 0, 0, 0.1);
|
|
2
|
+
@asset-tree-collapsed-width: 50px;
|
|
3
|
+
|
|
4
|
+
// font-weight hotfix old tree
|
|
5
|
+
.ObjectTree {
|
|
6
|
+
font-weight: @font-normal;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.AssetTree {
|
|
10
|
+
position: relative;
|
|
11
|
+
height: 100%;
|
|
12
|
+
background-color: @color-white;
|
|
13
|
+
|
|
14
|
+
&Content {
|
|
15
|
+
display: flex;
|
|
16
|
+
height: 100%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.TreeSidebar {
|
|
20
|
+
background: @color-black;
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: column;
|
|
23
|
+
min-width: @asset-tree-collapsed-width;
|
|
24
|
+
width: @asset-tree-collapsed-width;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.TreeSidebarToggle {
|
|
28
|
+
cursor: pointer;
|
|
29
|
+
height: @asset-tree-collapsed-width;
|
|
30
|
+
text-align: center;
|
|
31
|
+
width: @asset-tree-collapsed-width;
|
|
32
|
+
|
|
33
|
+
.rioglyph {
|
|
34
|
+
color: @color-white;
|
|
35
|
+
font-size: 18px;
|
|
36
|
+
height: @asset-tree-collapsed-width;
|
|
37
|
+
line-height: @asset-tree-collapsed-width;
|
|
38
|
+
opacity: 1;
|
|
39
|
+
width: @asset-tree-collapsed-width;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&.closed {
|
|
44
|
+
box-shadow: none !important;
|
|
45
|
+
width: 50px !important;
|
|
46
|
+
|
|
47
|
+
.TreeSidebarToggle {
|
|
48
|
+
transform: rotate(180deg);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.TreeSidebarNavigation li {
|
|
52
|
+
&:before, &:after {
|
|
53
|
+
display: none;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&Body {
|
|
59
|
+
display: flex;
|
|
60
|
+
flex-direction: column;
|
|
61
|
+
flex: 1 1 auto;
|
|
62
|
+
overflow: auto;
|
|
63
|
+
-webkit-overflow-scrolling: touch;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.TreeSidebarNavigation {
|
|
67
|
+
.reset-list();
|
|
68
|
+
flex: 1 0;
|
|
69
|
+
padding-top: 6px;
|
|
70
|
+
|
|
71
|
+
li {
|
|
72
|
+
align-items: center;
|
|
73
|
+
color: @color-white;
|
|
74
|
+
cursor: pointer;
|
|
75
|
+
display: flex;
|
|
76
|
+
font-size: 30px;
|
|
77
|
+
height: @asset-tree-collapsed-width;
|
|
78
|
+
justify-content: center;
|
|
79
|
+
overflow: hidden;
|
|
80
|
+
position: relative;
|
|
81
|
+
text-align: center;
|
|
82
|
+
transition: opacity 0.25s ease;
|
|
83
|
+
width: @asset-tree-collapsed-width;
|
|
84
|
+
|
|
85
|
+
.rioglyph {
|
|
86
|
+
opacity: 0.35;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.selection-bubble {
|
|
90
|
+
position: relative;
|
|
91
|
+
width: @asset-tree-collapsed-width;
|
|
92
|
+
height: @asset-tree-collapsed-width;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&.active {
|
|
96
|
+
color: @color-white;
|
|
97
|
+
|
|
98
|
+
&:before, &:after {
|
|
99
|
+
border-color: transparent;
|
|
100
|
+
border-style: solid;
|
|
101
|
+
border-width: 8px 6px 8px 0;
|
|
102
|
+
content: '';
|
|
103
|
+
height: 0;
|
|
104
|
+
position: absolute;
|
|
105
|
+
right: -12px;
|
|
106
|
+
top: calc(~'50% - 8px');
|
|
107
|
+
transition: right 0.25s ease;
|
|
108
|
+
width: 0;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
&:before {
|
|
112
|
+
border-right-color: @color-black;
|
|
113
|
+
right: 1px;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
&:after {
|
|
117
|
+
border-right-color: @color-white;
|
|
118
|
+
right: 0;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.rioglyph {
|
|
122
|
+
opacity: 1;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&.selected {
|
|
127
|
+
.selection-bubble:after {
|
|
128
|
+
background: @brand-primary;
|
|
129
|
+
border-radius: @border-radius-round;
|
|
130
|
+
border: 2px solid @color-black;
|
|
131
|
+
content: '';
|
|
132
|
+
height: 14px;
|
|
133
|
+
position: absolute;
|
|
134
|
+
right: 9px;
|
|
135
|
+
top: 7px;
|
|
136
|
+
width: 14px;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
&ResizeLimit {
|
|
143
|
+
display: none;
|
|
144
|
+
position: absolute;
|
|
145
|
+
height: 100%;
|
|
146
|
+
width: 0;
|
|
147
|
+
border: 1px dashed @gray-darkest;
|
|
148
|
+
opacity: 0.2;
|
|
149
|
+
pointer-events: none;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&.fluid {
|
|
153
|
+
.ApplicationLayoutSidebar:not(.right) & {
|
|
154
|
+
float: left;
|
|
155
|
+
left: 0;
|
|
156
|
+
box-shadow: 1px 0 0 0 @gray-light;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.ApplicationLayoutSidebar.right & {
|
|
160
|
+
float: right;
|
|
161
|
+
box-shadow: -1px 0 0 0 @gray-light;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
&.fly {
|
|
166
|
+
position: absolute;
|
|
167
|
+
top: 0;
|
|
168
|
+
|
|
169
|
+
.ApplicationLayoutSidebar:not(.right) & {
|
|
170
|
+
box-shadow: 5px 5px 5px asset-treebar-shadow-color;
|
|
171
|
+
left: 0;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.ApplicationLayoutSidebar.right & {
|
|
175
|
+
box-shadow: -5px 5px 5px asset-treebar-shadow-color;
|
|
176
|
+
right: 0;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
html:not(.ua-desktop) & {
|
|
181
|
+
.TreeSidebar {
|
|
182
|
+
background: @gray-lightest;
|
|
183
|
+
box-shadow: inset -1px 0 @gray-light;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
&.closed {
|
|
187
|
+
.TreeSidebar {
|
|
188
|
+
background: @color-white;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.TreeSidebarToggle {
|
|
193
|
+
.rioglyph {
|
|
194
|
+
color: @color-black;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.TreeSidebarNavigation {
|
|
199
|
+
li {
|
|
200
|
+
color: @color-black;
|
|
201
|
+
|
|
202
|
+
.rioglyph {
|
|
203
|
+
opacity: 0.5;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
&.active {
|
|
207
|
+
&:before {
|
|
208
|
+
border-right-color: @gray-light;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
&:after {
|
|
212
|
+
border-right-color: @color-white;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.rioglyph {
|
|
216
|
+
opacity: 1;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
&.selected {
|
|
221
|
+
.selection-bubble:after {
|
|
222
|
+
border: 2px solid @gray-lightest;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
// TREE
|
|
231
|
+
.TreeHeader {
|
|
232
|
+
background: @color-white;
|
|
233
|
+
position: sticky;
|
|
234
|
+
top: 0;
|
|
235
|
+
z-index: 1;
|
|
236
|
+
border-bottom: 1px solid @gray-light;
|
|
237
|
+
|
|
238
|
+
.TreeHead {
|
|
239
|
+
min-height: 50px;
|
|
240
|
+
|
|
241
|
+
.TreeSelectAll {
|
|
242
|
+
margin-right: 5px;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
&Options {
|
|
247
|
+
.dropdown-toggle {
|
|
248
|
+
width: 20px;
|
|
249
|
+
height: 20px;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.TreeOption {
|
|
253
|
+
line-height: 1.25 !important;
|
|
254
|
+
margin: 5px 0;
|
|
255
|
+
|
|
256
|
+
span:last-child {
|
|
257
|
+
word-break: break-word; // webkit
|
|
258
|
+
word-wrap: break-word;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
&:first-child {
|
|
262
|
+
margin-top: 0;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
&:last-child {
|
|
266
|
+
margin-bottom: 0;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.TreeSearch {
|
|
273
|
+
display: flex;
|
|
274
|
+
padding: 15px;
|
|
275
|
+
|
|
276
|
+
.no-spacings & {
|
|
277
|
+
padding: 0 0 15px 0;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
+ .TreeHead {
|
|
281
|
+
margin-top: -15px;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.TreeFilter {
|
|
286
|
+
display: none;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.TreeRoot {
|
|
290
|
+
flex: 1 0 auto;
|
|
291
|
+
overflow: auto;
|
|
292
|
+
contain: content;
|
|
293
|
+
|
|
294
|
+
.TreeNodeContainer {
|
|
295
|
+
font-size: 14px;
|
|
296
|
+
|
|
297
|
+
&.open {
|
|
298
|
+
.TreeNode .TreeLabelExpander {
|
|
299
|
+
transform: translateY(-50%) rotate(-180deg) !important;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
&:not(.open) {
|
|
304
|
+
.TreeLeaf:not(.root) {
|
|
305
|
+
display: none;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.TreeNode,
|
|
310
|
+
.TreeLeaf {
|
|
311
|
+
background: @color-white;
|
|
312
|
+
border-bottom: 1px solid @gray-lighter;
|
|
313
|
+
display: flex;
|
|
314
|
+
padding: 0 10px 0 15px;
|
|
315
|
+
|
|
316
|
+
&:hover {
|
|
317
|
+
background-color: @gray-lightest;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
&.active {
|
|
321
|
+
.TreeLabel {
|
|
322
|
+
.TreeLabelName {
|
|
323
|
+
font-weight: @font-medium;
|
|
324
|
+
letter-spacing: -0.2px;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.TreeCheckbox {
|
|
330
|
+
.checkbox-text {
|
|
331
|
+
&:before {
|
|
332
|
+
margin: 0;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.TreeLabel {
|
|
338
|
+
align-items: center;
|
|
339
|
+
cursor: pointer;
|
|
340
|
+
display: flex;
|
|
341
|
+
flex: 1 0;
|
|
342
|
+
//margin-left: 8px;
|
|
343
|
+
overflow: hidden;
|
|
344
|
+
padding: 10px 0;
|
|
345
|
+
position: relative;
|
|
346
|
+
|
|
347
|
+
> .rioglyph:first-child:not(.undefined) {
|
|
348
|
+
margin-right: 5px;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.TreeLabelName {
|
|
352
|
+
align-items: flex-start;
|
|
353
|
+
display: flex;
|
|
354
|
+
flex: 1 1 0;
|
|
355
|
+
font-weight: @font-normal;
|
|
356
|
+
hyphens: auto;
|
|
357
|
+
letter-spacing: 0;
|
|
358
|
+
line-height: 1.25;
|
|
359
|
+
min-height: 17px; // fix for empty nodes
|
|
360
|
+
overflow: hidden;
|
|
361
|
+
word-break: break-word; // webkit
|
|
362
|
+
word-wrap: break-word;
|
|
363
|
+
|
|
364
|
+
.TreeLabelNameText {
|
|
365
|
+
display: flex;
|
|
366
|
+
flex-direction: column;
|
|
367
|
+
|
|
368
|
+
.TreeLabelNameTextHeadline {}
|
|
369
|
+
|
|
370
|
+
.TreeLabelNameTextSubline {
|
|
371
|
+
font-size: 12px;
|
|
372
|
+
color: @gray;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
> .rioglyph:not(.undefined) {
|
|
377
|
+
font-size: 16px;
|
|
378
|
+
margin: 1px 5px 0 0;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.TreeLabelCount {
|
|
383
|
+
letter-spacing: 0px;
|
|
384
|
+
position: absolute;
|
|
385
|
+
right: 30px;
|
|
386
|
+
top: 50%;
|
|
387
|
+
transform: translateY(-50%);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.TreeLabelExpander {
|
|
391
|
+
color: @gray-dark;
|
|
392
|
+
position: absolute;
|
|
393
|
+
right: 5px;
|
|
394
|
+
top: 50%;
|
|
395
|
+
transform: translateY(-50%);
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.TreeNode {
|
|
401
|
+
align-items: center;
|
|
402
|
+
|
|
403
|
+
.TreeCheckbox {
|
|
404
|
+
margin: 0 7px 0 0;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.TreeLabelName {
|
|
408
|
+
padding-right: 55px;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
&.checked ~ .TreeLeaf {
|
|
412
|
+
.checkbox {
|
|
413
|
+
display: none;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
// copy active state
|
|
417
|
+
.TreeRoot .TreeNodeContainer .TreeNode.active;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
~ .TreeLeaf {
|
|
421
|
+
padding: 0 15px 0 40px;
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.TreeLeaf {
|
|
426
|
+
align-items: flex-start;
|
|
427
|
+
|
|
428
|
+
.TreeCheckbox {
|
|
429
|
+
margin: 9px 7px 0 0;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.TreeRadioButton {
|
|
433
|
+
pointer-events: none;
|
|
434
|
+
margin: 9px 7px 0 0;
|
|
435
|
+
|
|
436
|
+
+ .TreeLabel {
|
|
437
|
+
margin-left: -25px;
|
|
438
|
+
padding-left: 22px;
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
.AutoSuggest {
|
|
2
|
+
.clearfix;
|
|
3
|
+
|
|
4
|
+
.input-group & {
|
|
5
|
+
flex: 1 1 auto;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.dropdown-menu {
|
|
9
|
+
max-height: @dropdown-max-height;
|
|
10
|
+
overflow-x: hidden;
|
|
11
|
+
overflow-y: auto;
|
|
12
|
+
|
|
13
|
+
> .active {
|
|
14
|
+
color: @color-white;
|
|
15
|
+
background-color: @brand-primary;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
> li > a {
|
|
19
|
+
white-space: normal;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// z-index should be below dialog
|
|
2
|
+
@z-index-bottom-sheet: @zindex-modal - 2;
|
|
3
|
+
|
|
4
|
+
.bottom-sheet{
|
|
5
|
+
z-index: @z-index-bottom-sheet;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.bottom-sheet-backdrop {
|
|
9
|
+
position: absolute;
|
|
10
|
+
inset: 0;
|
|
11
|
+
z-index: @z-index-bottom-sheet - 1;
|
|
12
|
+
background: #000000;
|
|
13
|
+
opacity: 50%;
|
|
14
|
+
}
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
.carousel {
|
|
2
|
+
position: relative;
|
|
3
|
+
|
|
4
|
+
&.pointer-event {
|
|
5
|
+
touch-action: pan-y;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.carousel-inner {
|
|
9
|
+
position: relative;
|
|
10
|
+
width: 100%;
|
|
11
|
+
overflow: hidden;
|
|
12
|
+
|
|
13
|
+
&:after {
|
|
14
|
+
display: block;
|
|
15
|
+
clear: both;
|
|
16
|
+
content: "";
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.carousel-item {
|
|
22
|
+
position: relative;
|
|
23
|
+
display: none;
|
|
24
|
+
float: left;
|
|
25
|
+
width: 100%;
|
|
26
|
+
margin-right: -100%;
|
|
27
|
+
-webkit-backface-visibility: hidden;
|
|
28
|
+
backface-visibility: hidden;
|
|
29
|
+
transition: transform .6s ease-in-out;
|
|
30
|
+
|
|
31
|
+
@media (prefers-reduced-motion:reduce) {
|
|
32
|
+
transition: none
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.carousel-item-next,
|
|
37
|
+
.carousel-item-prev,
|
|
38
|
+
.carousel-item.active {
|
|
39
|
+
display: block;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.active.carousel-item-right,
|
|
43
|
+
.carousel-item-next:not(.carousel-item-left) {
|
|
44
|
+
transform: translateX(100%);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.active.carousel-item-left,
|
|
48
|
+
.carousel-item-prev:not(.carousel-item-right) {
|
|
49
|
+
transform: translateX(-100%);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.carousel-fade .carousel-item {
|
|
53
|
+
opacity: 0;
|
|
54
|
+
transition-property: opacity;
|
|
55
|
+
transform: none;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.carousel-fade .carousel-item-next.carousel-item-left,
|
|
59
|
+
.carousel-fade .carousel-item-prev.carousel-item-right,
|
|
60
|
+
.carousel-fade .carousel-item.active {
|
|
61
|
+
z-index: 1;
|
|
62
|
+
opacity: 1;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.carousel-fade .active.carousel-item-left,
|
|
66
|
+
.carousel-fade .active.carousel-item-right {
|
|
67
|
+
z-index: 0;
|
|
68
|
+
opacity: 0;
|
|
69
|
+
transition: opacity 0s .6s;
|
|
70
|
+
|
|
71
|
+
@media (prefers-reduced-motion:reduce) {
|
|
72
|
+
transition: none;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.carousel-control-next,
|
|
77
|
+
.carousel-control-prev {
|
|
78
|
+
align-items: center;
|
|
79
|
+
bottom: 0;
|
|
80
|
+
color: @color-white;
|
|
81
|
+
display: flex;
|
|
82
|
+
justify-content: center;
|
|
83
|
+
opacity: .5;
|
|
84
|
+
position: absolute;
|
|
85
|
+
text-align: center;
|
|
86
|
+
top: 0;
|
|
87
|
+
transition: opacity .15s ease;
|
|
88
|
+
width: 15%;
|
|
89
|
+
z-index: 1;
|
|
90
|
+
|
|
91
|
+
@media (prefers-reduced-motion:reduce) {
|
|
92
|
+
transition: none;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
.carousel-control-next,
|
|
98
|
+
.carousel-control-prev {
|
|
99
|
+
&:focus,
|
|
100
|
+
&:hover {
|
|
101
|
+
color: @color-white;
|
|
102
|
+
opacity: .9;
|
|
103
|
+
outline: 0;
|
|
104
|
+
text-decoration: none !important;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.sr-only {
|
|
108
|
+
display: none;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.carousel-control-prev {
|
|
113
|
+
left: 0;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.carousel-control-next {
|
|
117
|
+
right: 0;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.carousel-control-prev-icon,
|
|
121
|
+
.carousel-control-next-icon {
|
|
122
|
+
align-items: center;
|
|
123
|
+
border-radius: @border-radius-round;
|
|
124
|
+
color: @gray-dark;
|
|
125
|
+
display: flex;
|
|
126
|
+
height: 60px;
|
|
127
|
+
justify-content: center;
|
|
128
|
+
width: 60px;
|
|
129
|
+
|
|
130
|
+
&:before {
|
|
131
|
+
.rioglyph();
|
|
132
|
+
font-size: 24px;
|
|
133
|
+
line-height: 60px * 0.5;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
&:hover {
|
|
137
|
+
background: fade(@gray-darkest, 10%);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.carousel-control-prev-icon {
|
|
142
|
+
&:before {
|
|
143
|
+
content: @rioglyph-chevron-left;
|
|
144
|
+
padding-right: 3px;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.carousel-control-next-icon {
|
|
149
|
+
&:before {
|
|
150
|
+
content: @rioglyph-chevron-right;
|
|
151
|
+
padding-left: 3px;
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.carousel-indicators {
|
|
156
|
+
.reset-list();
|
|
157
|
+
bottom: 10px;
|
|
158
|
+
left: 50%;
|
|
159
|
+
position: absolute;
|
|
160
|
+
transform: translateX(-50%);
|
|
161
|
+
z-index: 15;
|
|
162
|
+
|
|
163
|
+
li {
|
|
164
|
+
background: @color-white;
|
|
165
|
+
border-radius: @border-radius-sm;
|
|
166
|
+
border: 1px solid @brand-primary;
|
|
167
|
+
display: inline-block;
|
|
168
|
+
height: 10px;
|
|
169
|
+
margin: 0 2px;
|
|
170
|
+
text-indent: -999px;
|
|
171
|
+
width: 20px;
|
|
172
|
+
|
|
173
|
+
&:not(.active) {
|
|
174
|
+
cursor: pointer;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
&.active {
|
|
178
|
+
background: @brand-primary;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
@media (prefers-reduced-motion:reduce) {
|
|
182
|
+
transition: none;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.carousel-caption {
|
|
188
|
+
background: linear-gradient(0deg, rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0) 100%);
|
|
189
|
+
bottom: 0;
|
|
190
|
+
color: @gray-darkest;
|
|
191
|
+
left: 0;
|
|
192
|
+
padding: 20px 20px 10px 20px;
|
|
193
|
+
position: absolute;
|
|
194
|
+
right: 0;
|
|
195
|
+
text-align: center;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.carousel {
|
|
199
|
+
&.offset-indicators {
|
|
200
|
+
margin-bottom: 50px;
|
|
201
|
+
|
|
202
|
+
.carousel-indicators {
|
|
203
|
+
bottom: -35px;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
&:not(.offset-indicators) {
|
|
208
|
+
.carousel-indicators + .carousel-inner .carousel-caption {
|
|
209
|
+
padding-bottom: 40px;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
}
|