@oruga-ui/theme-oruga 0.0.1
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/LICENSE +21 -0
- package/README.md +115 -0
- package/dist/oruga-full.css +3778 -0
- package/dist/oruga-full.min.css +1 -0
- package/dist/oruga.css +2209 -0
- package/dist/oruga.min.css +1 -0
- package/dist/scss/components/_autocomplete.scss +130 -0
- package/dist/scss/components/_button.scss +242 -0
- package/dist/scss/components/_carousel.scss +256 -0
- package/dist/scss/components/_checkbox.scss +183 -0
- package/dist/scss/components/_collapse.scss +12 -0
- package/dist/scss/components/_datepicker.scss +592 -0
- package/dist/scss/components/_datetimepicker.scss +10 -0
- package/dist/scss/components/_dropdown.scss +241 -0
- package/dist/scss/components/_field.scss +154 -0
- package/dist/scss/components/_icon.scss +53 -0
- package/dist/scss/components/_input.scss +153 -0
- package/dist/scss/components/_inputitems.scss +175 -0
- package/dist/scss/components/_loading.scss +45 -0
- package/dist/scss/components/_menu.scss +124 -0
- package/dist/scss/components/_modal.scss +103 -0
- package/dist/scss/components/_notification.scss +212 -0
- package/dist/scss/components/_pagination.scss +256 -0
- package/dist/scss/components/_radio.scss +121 -0
- package/dist/scss/components/_select.scss +168 -0
- package/dist/scss/components/_sidebar.scss +112 -0
- package/dist/scss/components/_skeleton.scss +93 -0
- package/dist/scss/components/_slider.scss +241 -0
- package/dist/scss/components/_steps.scss +599 -0
- package/dist/scss/components/_switch.scss +171 -0
- package/dist/scss/components/_table.scss +481 -0
- package/dist/scss/components/_tabs.scss +385 -0
- package/dist/scss/components/_timepicker.scss +116 -0
- package/dist/scss/components/_tooltip.scss +345 -0
- package/dist/scss/components/_upload.scss +74 -0
- package/dist/scss/oruga-common.scss +37 -0
- package/dist/scss/oruga-full.scss +9 -0
- package/dist/scss/oruga.scss +197 -0
- package/dist/scss/utils/_animations.scss +231 -0
- package/dist/scss/utils/_base.scss +31 -0
- package/dist/scss/utils/_helpers.scss +211 -0
- package/dist/scss/utils/_root.scss +28 -0
- package/dist/scss/utils/_variables.scss +105 -0
- package/dist/theme.js +8 -0
- package/package.json +72 -0
- package/src/App.vue +104 -0
- package/src/assets/scss/components/_autocomplete.scss +130 -0
- package/src/assets/scss/components/_button.scss +242 -0
- package/src/assets/scss/components/_carousel.scss +256 -0
- package/src/assets/scss/components/_checkbox.scss +183 -0
- package/src/assets/scss/components/_collapse.scss +12 -0
- package/src/assets/scss/components/_datepicker.scss +592 -0
- package/src/assets/scss/components/_datetimepicker.scss +10 -0
- package/src/assets/scss/components/_dropdown.scss +241 -0
- package/src/assets/scss/components/_field.scss +154 -0
- package/src/assets/scss/components/_icon.scss +53 -0
- package/src/assets/scss/components/_input.scss +153 -0
- package/src/assets/scss/components/_inputitems.scss +175 -0
- package/src/assets/scss/components/_loading.scss +45 -0
- package/src/assets/scss/components/_menu.scss +124 -0
- package/src/assets/scss/components/_modal.scss +103 -0
- package/src/assets/scss/components/_notification.scss +212 -0
- package/src/assets/scss/components/_pagination.scss +256 -0
- package/src/assets/scss/components/_radio.scss +121 -0
- package/src/assets/scss/components/_select.scss +168 -0
- package/src/assets/scss/components/_sidebar.scss +112 -0
- package/src/assets/scss/components/_skeleton.scss +93 -0
- package/src/assets/scss/components/_slider.scss +241 -0
- package/src/assets/scss/components/_steps.scss +599 -0
- package/src/assets/scss/components/_switch.scss +171 -0
- package/src/assets/scss/components/_table.scss +481 -0
- package/src/assets/scss/components/_tabs.scss +385 -0
- package/src/assets/scss/components/_timepicker.scss +116 -0
- package/src/assets/scss/components/_tooltip.scss +345 -0
- package/src/assets/scss/components/_upload.scss +74 -0
- package/src/assets/scss/oruga-common.scss +37 -0
- package/src/assets/scss/oruga-full.scss +9 -0
- package/src/assets/scss/oruga.scss +197 -0
- package/src/assets/scss/utils/_animations.scss +231 -0
- package/src/assets/scss/utils/_base.scss +31 -0
- package/src/assets/scss/utils/_helpers.scss +211 -0
- package/src/assets/scss/utils/_root.scss +28 -0
- package/src/assets/scss/utils/_variables.scss +105 -0
- package/src/components/Autocomplete.vue +606 -0
- package/src/components/Button.vue +80 -0
- package/src/components/Carousel.vue +296 -0
- package/src/components/Checkbox.vue +134 -0
- package/src/components/Collapse.vue +132 -0
- package/src/components/Datepicker.vue +285 -0
- package/src/components/Datetimepicker.vue +127 -0
- package/src/components/Dropdown.vue +284 -0
- package/src/components/Field.vue +243 -0
- package/src/components/Icon.vue +66 -0
- package/src/components/Input.vue +121 -0
- package/src/components/Loading.vue +71 -0
- package/src/components/Modal.vue +171 -0
- package/src/components/Notification.vue +136 -0
- package/src/components/Pagination.vue +97 -0
- package/src/components/Radio.vue +95 -0
- package/src/components/Select.vue +155 -0
- package/src/components/Sidebar.vue +56 -0
- package/src/components/Skeleton.vue +57 -0
- package/src/components/Slider.vue +226 -0
- package/src/components/Steps.vue +234 -0
- package/src/components/Switch.vue +134 -0
- package/src/components/Table.vue +285 -0
- package/src/components/Tabs.vue +208 -0
- package/src/components/Taginput.vue +507 -0
- package/src/components/Timepicker.vue +124 -0
- package/src/components/Tooltip.vue +149 -0
- package/src/components/Upload.vue +66 -0
- package/src/main.ts +29 -0
- package/src/plugins/theme.ts +1 -0
- package/src/router/index.ts +39 -0
- package/src/views/Home.vue +24 -0
- package/types/index.d.ts +1 -0
package/dist/oruga.css
ADDED
|
@@ -0,0 +1,2209 @@
|
|
|
1
|
+
/*! Oruga v0.0.1 | MIT License | github.com/oruga-ui/oruga */
|
|
2
|
+
|
|
3
|
+
/***************************************
|
|
4
|
+
* Oruga Default Theme Minimal Style
|
|
5
|
+
****************************************/
|
|
6
|
+
/*********************
|
|
7
|
+
* Theme Variables
|
|
8
|
+
**********************/
|
|
9
|
+
@keyframes fadeOut {
|
|
10
|
+
from {
|
|
11
|
+
opacity: 1;
|
|
12
|
+
}
|
|
13
|
+
to {
|
|
14
|
+
opacity: 0;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
.fadeOut {
|
|
18
|
+
animation-name: fadeOut;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
@keyframes fadeOutDown {
|
|
22
|
+
from {
|
|
23
|
+
opacity: 1;
|
|
24
|
+
}
|
|
25
|
+
to {
|
|
26
|
+
opacity: 0;
|
|
27
|
+
transform: translate3d(0, 100%, 0);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
.fadeOutDown {
|
|
31
|
+
animation-name: fadeOutDown;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@keyframes fadeOutUp {
|
|
35
|
+
from {
|
|
36
|
+
opacity: 1;
|
|
37
|
+
}
|
|
38
|
+
to {
|
|
39
|
+
opacity: 0;
|
|
40
|
+
transform: translate3d(0, -100%, 0);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
.fadeOutUp {
|
|
44
|
+
animation-name: fadeOutUp;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@keyframes fadeIn {
|
|
48
|
+
from {
|
|
49
|
+
opacity: 0;
|
|
50
|
+
}
|
|
51
|
+
to {
|
|
52
|
+
opacity: 1;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
.fadeIn {
|
|
56
|
+
animation-name: fadeIn;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@keyframes fadeInDown {
|
|
60
|
+
from {
|
|
61
|
+
opacity: 0;
|
|
62
|
+
transform: translate3d(0, -100%, 0);
|
|
63
|
+
}
|
|
64
|
+
to {
|
|
65
|
+
opacity: 1;
|
|
66
|
+
transform: none;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
.fadeInDown {
|
|
70
|
+
animation-name: fadeInDown;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
@keyframes fadeInUp {
|
|
74
|
+
from {
|
|
75
|
+
opacity: 0;
|
|
76
|
+
transform: translate3d(0, 100%, 0);
|
|
77
|
+
}
|
|
78
|
+
to {
|
|
79
|
+
opacity: 1;
|
|
80
|
+
transform: none;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
.fadeInUp {
|
|
84
|
+
animation-name: fadeInUp;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
@keyframes append-animate {
|
|
88
|
+
from {
|
|
89
|
+
transform: scale(0);
|
|
90
|
+
opacity: 0;
|
|
91
|
+
}
|
|
92
|
+
to {
|
|
93
|
+
transform: scale(1);
|
|
94
|
+
opacity: 1;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Vue Transitions
|
|
99
|
+
*/
|
|
100
|
+
.fade-enter-active,
|
|
101
|
+
.fade-leave-active {
|
|
102
|
+
transition: opacity 150ms ease-out;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.fade-enter,
|
|
106
|
+
.fade-enter-from,
|
|
107
|
+
.fade-leave-to {
|
|
108
|
+
opacity: 0;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.zoom-in-enter-active,
|
|
112
|
+
.zoom-in-leave-active {
|
|
113
|
+
transition: opacity 150ms ease-out;
|
|
114
|
+
}
|
|
115
|
+
.zoom-in-enter-active .animation-content,
|
|
116
|
+
.zoom-in-leave-active .animation-content {
|
|
117
|
+
transition: transform 150ms ease-out;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.zoom-in-enter,
|
|
121
|
+
.zoom-in-enter-from,
|
|
122
|
+
.zoom-in-leave-active {
|
|
123
|
+
opacity: 0;
|
|
124
|
+
}
|
|
125
|
+
.zoom-in-enter .animation-content,
|
|
126
|
+
.zoom-in-enter-from .animation-content,
|
|
127
|
+
.zoom-in-leave-active .animation-content {
|
|
128
|
+
transform: scale(0.95);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.zoom-out-enter-active,
|
|
132
|
+
.zoom-out-leave-active {
|
|
133
|
+
transition: opacity 150ms ease-out;
|
|
134
|
+
}
|
|
135
|
+
.zoom-out-enter-active .animation-content,
|
|
136
|
+
.zoom-out-leave-active .animation-content {
|
|
137
|
+
transition: transform 150ms ease-out;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.zoom-out-enter,
|
|
141
|
+
.zoom-out-enter-from,
|
|
142
|
+
.zoom-out-leave-active {
|
|
143
|
+
opacity: 0;
|
|
144
|
+
}
|
|
145
|
+
.zoom-out-enter .animation-content,
|
|
146
|
+
.zoom-out-enter-from .animation-content,
|
|
147
|
+
.zoom-out-leave-active .animation-content {
|
|
148
|
+
transform: scale(1.05);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.slide-next-enter-active,
|
|
152
|
+
.slide-next-leave-active,
|
|
153
|
+
.slide-prev-enter-active,
|
|
154
|
+
.slide-prev-leave-active {
|
|
155
|
+
transition: transform 250ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.slide-prev-leave-to,
|
|
159
|
+
.slide-next-enter,
|
|
160
|
+
.slide-next-enter-from {
|
|
161
|
+
transform: translate3d(-100%, 0, 0);
|
|
162
|
+
position: absolute;
|
|
163
|
+
width: 100%;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.slide-prev-enter,
|
|
167
|
+
.slide-prev-enter-from,
|
|
168
|
+
.slide-next-leave-to {
|
|
169
|
+
transform: translate3d(100%, 0, 0);
|
|
170
|
+
position: absolute;
|
|
171
|
+
width: 100%;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.slide-down-enter-active,
|
|
175
|
+
.slide-down-leave-active,
|
|
176
|
+
.slide-up-enter-active,
|
|
177
|
+
.slide-up-leave-active {
|
|
178
|
+
transition: transform 250ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.slide-down-enter,
|
|
182
|
+
.slide-up-leave-to,
|
|
183
|
+
.slide-down-enter-from {
|
|
184
|
+
transform: translate3d(0, -100%, 0);
|
|
185
|
+
position: absolute;
|
|
186
|
+
height: 100%;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.slide-up-enter,
|
|
190
|
+
.slide-up-enter-from,
|
|
191
|
+
.slide-down-leave-to {
|
|
192
|
+
transform: translate3d(0, 100%, 0);
|
|
193
|
+
position: absolute;
|
|
194
|
+
height: 100%;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.slide-enter-active {
|
|
198
|
+
transition: 150ms ease-out;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.slide-leave-active {
|
|
202
|
+
transition: 150ms ease-out;
|
|
203
|
+
transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.slide-leave,
|
|
207
|
+
.slide-enter-to,
|
|
208
|
+
.slide-leave-from {
|
|
209
|
+
max-height: 100px;
|
|
210
|
+
overflow: hidden;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.slide-enter,
|
|
214
|
+
.slide-enter-from,
|
|
215
|
+
.slide-leave-to {
|
|
216
|
+
overflow: hidden;
|
|
217
|
+
max-height: 0;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
:root {
|
|
221
|
+
--oruga-white: #ffffff;
|
|
222
|
+
--oruga-black: #000000;
|
|
223
|
+
--oruga-grey: #7a7a7a;
|
|
224
|
+
--oruga-grey-light: #b5b5b5;
|
|
225
|
+
--oruga-grey-lighter: #dbdbdb;
|
|
226
|
+
--oruga-grey-dark: #4a4a4a;
|
|
227
|
+
--oruga-base-font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Noto Sans, Liberation Sans, Arial, sans-serif;
|
|
228
|
+
--oruga-base-font-size: 1rem;
|
|
229
|
+
--oruga-base-font-weight: 400;
|
|
230
|
+
--oruga-base-line-height: 1.5;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
*,
|
|
234
|
+
:after,
|
|
235
|
+
:before {
|
|
236
|
+
box-sizing: inherit;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
html {
|
|
240
|
+
box-sizing: border-box;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
body {
|
|
244
|
+
margin: 0;
|
|
245
|
+
padding: 0;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.o-noscroll {
|
|
249
|
+
position: fixed;
|
|
250
|
+
width: 100%;
|
|
251
|
+
bottom: 0;
|
|
252
|
+
overflow-x: hidden;
|
|
253
|
+
overflow-y: scroll;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.o-clipped {
|
|
257
|
+
overflow: hidden;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
/* @docs */
|
|
261
|
+
/* @docs */
|
|
262
|
+
.o-acp {
|
|
263
|
+
position: relative;
|
|
264
|
+
}
|
|
265
|
+
.o-acp__menu {
|
|
266
|
+
display: block;
|
|
267
|
+
width: 100%;
|
|
268
|
+
position: absolute;
|
|
269
|
+
left: 0;
|
|
270
|
+
top: 100%;
|
|
271
|
+
overflow: auto;
|
|
272
|
+
z-index: var(--oruga-autocomplete-menu-zindex, 20);
|
|
273
|
+
background-color: var(--oruga-autocomplete-menu-background, #ffffff);
|
|
274
|
+
}
|
|
275
|
+
.o-acp__menu--top {
|
|
276
|
+
top: auto;
|
|
277
|
+
bottom: 100%;
|
|
278
|
+
}
|
|
279
|
+
.o-acp__item {
|
|
280
|
+
display: block;
|
|
281
|
+
position: relative;
|
|
282
|
+
white-space: nowrap;
|
|
283
|
+
overflow: hidden;
|
|
284
|
+
text-overflow: ellipsis;
|
|
285
|
+
cursor: pointer;
|
|
286
|
+
}
|
|
287
|
+
.o-acp__item-group-title, .o-acp__item--empty {
|
|
288
|
+
pointer-events: none;
|
|
289
|
+
}
|
|
290
|
+
.o-acp--expanded {
|
|
291
|
+
width: 100%;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
/* @docs */
|
|
295
|
+
/* @docs */
|
|
296
|
+
@keyframes spinAround {
|
|
297
|
+
from {
|
|
298
|
+
transform: rotate(0deg);
|
|
299
|
+
}
|
|
300
|
+
to {
|
|
301
|
+
transform: rotate(359deg);
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
.o-btn {
|
|
305
|
+
-moz-appearance: none;
|
|
306
|
+
-webkit-appearance: none;
|
|
307
|
+
position: relative;
|
|
308
|
+
display: inline-flex;
|
|
309
|
+
cursor: pointer;
|
|
310
|
+
text-align: center;
|
|
311
|
+
white-space: nowrap;
|
|
312
|
+
align-items: center;
|
|
313
|
+
justify-content: center;
|
|
314
|
+
vertical-align: top;
|
|
315
|
+
text-decoration: none;
|
|
316
|
+
-webkit-touch-callout: none;
|
|
317
|
+
-webkit-user-select: none;
|
|
318
|
+
-moz-user-select: none;
|
|
319
|
+
-ms-user-select: none;
|
|
320
|
+
user-select: none;
|
|
321
|
+
background-color: var(--oruga-button-background-color, #445e00);
|
|
322
|
+
color: var(--oruga-button-color, #ffffff);
|
|
323
|
+
}
|
|
324
|
+
.o-btn__wrapper {
|
|
325
|
+
margin-left: -0.1875em;
|
|
326
|
+
margin-right: -0.1875em;
|
|
327
|
+
display: inline-flex;
|
|
328
|
+
align-items: center;
|
|
329
|
+
justify-content: center;
|
|
330
|
+
position: relative;
|
|
331
|
+
width: 100%;
|
|
332
|
+
}
|
|
333
|
+
.o-btn__wrapper > * {
|
|
334
|
+
margin-left: 0.1875em;
|
|
335
|
+
margin-right: 0.1875em;
|
|
336
|
+
}
|
|
337
|
+
.o-btn__label {
|
|
338
|
+
width: 100%;
|
|
339
|
+
}
|
|
340
|
+
.o-btn--expanded {
|
|
341
|
+
width: 100%;
|
|
342
|
+
}
|
|
343
|
+
.o-btn--disabled {
|
|
344
|
+
opacity: var(--oruga-button-disabled-opacity, 0.5);
|
|
345
|
+
cursor: not-allowed;
|
|
346
|
+
pointer-events: none;
|
|
347
|
+
}
|
|
348
|
+
.o-btn--outlined {
|
|
349
|
+
background-color: var(--oruga-button-outlined-background-color, transparent);
|
|
350
|
+
border-color: var(--oruga-button-background-color, #445e00);
|
|
351
|
+
color: var(--oruga-button-background-color, #445e00);
|
|
352
|
+
}
|
|
353
|
+
.o-btn--outlined:hover {
|
|
354
|
+
border-color: transparent;
|
|
355
|
+
background-color: var(--oruga-button-background-color, #445e00);
|
|
356
|
+
color: var(--oruga-button-color, #ffffff);
|
|
357
|
+
}
|
|
358
|
+
.o-btn--loading {
|
|
359
|
+
color: transparent !important;
|
|
360
|
+
pointer-events: none;
|
|
361
|
+
}
|
|
362
|
+
.o-btn--loading::after {
|
|
363
|
+
-webkit-animation: spinAround 500ms infinite linear;
|
|
364
|
+
left: calc(50% - 0.5em);
|
|
365
|
+
top: calc(50% - 0.5em);
|
|
366
|
+
position: absolute !important;
|
|
367
|
+
border: 2px solid #dbdbdb;
|
|
368
|
+
border-radius: 9999px;
|
|
369
|
+
border-right-color: transparent;
|
|
370
|
+
border-top-color: transparent;
|
|
371
|
+
content: "";
|
|
372
|
+
display: block;
|
|
373
|
+
height: 1em;
|
|
374
|
+
width: 1em;
|
|
375
|
+
}
|
|
376
|
+
.o-btn--inverted {
|
|
377
|
+
background-color: var(--oruga-button-color, #ffffff);
|
|
378
|
+
border-color: var(--oruga-button-color, #ffffff);
|
|
379
|
+
color: var(--oruga-button-background-color, #445e00);
|
|
380
|
+
}
|
|
381
|
+
.o-btn--inverted:hover {
|
|
382
|
+
filter: brightness(95%);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
/* @docs */
|
|
386
|
+
/* @docs */
|
|
387
|
+
.o-car {
|
|
388
|
+
-webkit-touch-callout: none;
|
|
389
|
+
-webkit-user-select: none;
|
|
390
|
+
-moz-user-select: none;
|
|
391
|
+
-ms-user-select: none;
|
|
392
|
+
user-select: none;
|
|
393
|
+
position: relative;
|
|
394
|
+
overflow: hidden;
|
|
395
|
+
width: 100%;
|
|
396
|
+
}
|
|
397
|
+
.o-car__overlay {
|
|
398
|
+
bottom: 0;
|
|
399
|
+
left: 0;
|
|
400
|
+
right: 0;
|
|
401
|
+
top: 0;
|
|
402
|
+
align-items: center;
|
|
403
|
+
flex-direction: column;
|
|
404
|
+
justify-content: center;
|
|
405
|
+
display: flex;
|
|
406
|
+
max-height: 100vh;
|
|
407
|
+
position: fixed;
|
|
408
|
+
z-index: var(--oruga-carousel-overlay-zindex, 40);
|
|
409
|
+
}
|
|
410
|
+
.o-car__scene {
|
|
411
|
+
position: relative;
|
|
412
|
+
width: 100%;
|
|
413
|
+
}
|
|
414
|
+
.o-car__items {
|
|
415
|
+
display: flex;
|
|
416
|
+
width: 100%;
|
|
417
|
+
}
|
|
418
|
+
.o-car__item {
|
|
419
|
+
flex-shrink: 0;
|
|
420
|
+
}
|
|
421
|
+
.o-car__indicators {
|
|
422
|
+
width: 100%;
|
|
423
|
+
display: flex;
|
|
424
|
+
align-items: center;
|
|
425
|
+
justify-content: center;
|
|
426
|
+
}
|
|
427
|
+
.o-car__indicators--inside {
|
|
428
|
+
position: absolute;
|
|
429
|
+
}
|
|
430
|
+
.o-car__indicators--inside--bottom {
|
|
431
|
+
bottom: 0;
|
|
432
|
+
}
|
|
433
|
+
.o-car__indicators--inside--top {
|
|
434
|
+
top: 0;
|
|
435
|
+
}
|
|
436
|
+
.o-car__indicator__item {
|
|
437
|
+
display: block;
|
|
438
|
+
border: var(--oruga-carousel-indicator-border, 1px solid #445e00);
|
|
439
|
+
background: var(--oruga-carousel-indicator-background, #ffffff);
|
|
440
|
+
}
|
|
441
|
+
.o-car__indicator__item--active,
|
|
442
|
+
.o-car__indicator__item :hover {
|
|
443
|
+
background: var(--oruga-carousel-indicator-active-background, #445e00);
|
|
444
|
+
border: var(--oruga-carousel-indicator-active-border, 1px solid #445e00);
|
|
445
|
+
}
|
|
446
|
+
.o-car__indicator__item--boxes {
|
|
447
|
+
width: var(--oruga-carousel-indicator-size, 10px);
|
|
448
|
+
height: var(--oruga-carousel-indicator-size, 10px);
|
|
449
|
+
}
|
|
450
|
+
.o-car__indicator__item--dots {
|
|
451
|
+
border-radius: var(--oruga-carousel-indicator-dots-border-radius, 4px);
|
|
452
|
+
width: var(--oruga-carousel-indicator-size, 10px);
|
|
453
|
+
height: var(--oruga-carousel-indicator-size, 10px);
|
|
454
|
+
}
|
|
455
|
+
.o-car__arrow__icon {
|
|
456
|
+
cursor: pointer;
|
|
457
|
+
background: var(--oruga-carousel-arrow-background, #ffffff);
|
|
458
|
+
color: var(--oruga-carousel-arrow-color, #445e00);
|
|
459
|
+
width: var(--oruga-carousel-arrow-size, 1.5rem);
|
|
460
|
+
height: var(--oruga-carousel-arrow-size, 1.5rem);
|
|
461
|
+
}
|
|
462
|
+
.o-car__arrow__icon-prev, .o-car__arrow__icon-next {
|
|
463
|
+
position: absolute;
|
|
464
|
+
top: var(--oruga-carousel-arrow-top, 50%);
|
|
465
|
+
transform: translateY(var(--oruga-carousel-arrow-top, -50%));
|
|
466
|
+
z-index: 1;
|
|
467
|
+
}
|
|
468
|
+
.o-car__arrow__icon-prev {
|
|
469
|
+
left: var(--oruga-carousel-arrow-icon-spaced, 1.5rem);
|
|
470
|
+
}
|
|
471
|
+
.o-car__arrow__icon-next {
|
|
472
|
+
right: var(--oruga-carousel-arrow-icon-spaced, 1.5rem);
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
/* @docs */
|
|
476
|
+
/* @docs */
|
|
477
|
+
.o-chk {
|
|
478
|
+
display: inline-flex;
|
|
479
|
+
align-items: center;
|
|
480
|
+
cursor: pointer;
|
|
481
|
+
position: relative;
|
|
482
|
+
-webkit-touch-callout: none;
|
|
483
|
+
-webkit-user-select: none;
|
|
484
|
+
-moz-user-select: none;
|
|
485
|
+
-ms-user-select: none;
|
|
486
|
+
user-select: none;
|
|
487
|
+
}
|
|
488
|
+
.o-chk__check {
|
|
489
|
+
width: var(--oruga-checkbox-size, 1rem);
|
|
490
|
+
height: var(--oruga-checkbox-size, 1rem);
|
|
491
|
+
outline: none;
|
|
492
|
+
margin: 0;
|
|
493
|
+
vertical-align: top;
|
|
494
|
+
background-position: center;
|
|
495
|
+
background-size: contain;
|
|
496
|
+
-webkit-appearance: none;
|
|
497
|
+
-moz-appearance: none;
|
|
498
|
+
appearance: none;
|
|
499
|
+
-webkit-print-color-adjust: exact;
|
|
500
|
+
print-color-adjust: exact;
|
|
501
|
+
flex-shrink: 0;
|
|
502
|
+
cursor: pointer;
|
|
503
|
+
background-repeat: no-repeat;
|
|
504
|
+
border-color: var(--oruga-checkbox-border-color, #445e00);
|
|
505
|
+
border-style: solid;
|
|
506
|
+
transition-property: background;
|
|
507
|
+
}
|
|
508
|
+
.o-chk__check--checked {
|
|
509
|
+
background-color: var(--oruga-checkbox-active-background-color, #445e00);
|
|
510
|
+
border-color: var(--oruga-checkbox-active-background-color, #445e00);
|
|
511
|
+
background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 234 225' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(3.13817,0,0,3.13817,-69.2796,-49.5156)'%3E%3Cpath style='fill:var(--oruga-checkbox-checkmark-color, %23ffffff)' d='M22.504,26.219L28.637,32.386L39.494,18.284L37.348,16.379L28,27.725L24.46,24.196L22.504,26.219Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
|
512
|
+
}
|
|
513
|
+
.o-chk__check--indeterminate {
|
|
514
|
+
background-color: var(--oruga-checkbox-active-background-color, #445e00);
|
|
515
|
+
border-color: var(--oruga-checkbox-active-background-color, #445e00);
|
|
516
|
+
background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 417 417' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.16667,0,0,4.16667,0,0)'%3E%3Cg transform='matrix(6.96176,0,0,20.5682,-118.661,-806.753)'%3E%3Cpath style='fill:var(--oruga-checkbox-checkmark-color, %23ffffff)' d='M31.265,41.654C31.265,41.324 30.474,41.057 29.5,41.057L18.953,41.057C17.979,41.057 17.188,41.324 17.188,41.654C17.188,41.984 17.979,42.252 18.953,42.252L29.5,42.252C30.474,42.252 31.265,41.984 31.265,41.654Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
|
517
|
+
}
|
|
518
|
+
.o-chk--disabled {
|
|
519
|
+
opacity: var(--oruga-checkbox-disabled-opacity, 0.5);
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
/* @docs */
|
|
523
|
+
/* @docs */
|
|
524
|
+
.o-clps__trigger {
|
|
525
|
+
cursor: pointer;
|
|
526
|
+
}
|
|
527
|
+
.o-clps__content {
|
|
528
|
+
display: inherit;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
/* @docs */
|
|
532
|
+
/* @docs */
|
|
533
|
+
.o-dpck__dropdown {
|
|
534
|
+
width: 100%;
|
|
535
|
+
}
|
|
536
|
+
.o-dpck__box {
|
|
537
|
+
display: block;
|
|
538
|
+
position: relative;
|
|
539
|
+
}
|
|
540
|
+
.o-dpck__header__buttons {
|
|
541
|
+
align-items: center;
|
|
542
|
+
display: flex;
|
|
543
|
+
justify-content: center;
|
|
544
|
+
text-align: center;
|
|
545
|
+
}
|
|
546
|
+
.o-dpck__header__previous, .o-dpck__header__next {
|
|
547
|
+
justify-content: center;
|
|
548
|
+
text-align: center;
|
|
549
|
+
text-decoration: none;
|
|
550
|
+
cursor: pointer;
|
|
551
|
+
-moz-appearance: none;
|
|
552
|
+
-webkit-appearance: none;
|
|
553
|
+
align-items: center;
|
|
554
|
+
box-shadow: none;
|
|
555
|
+
display: inline-flex;
|
|
556
|
+
position: relative;
|
|
557
|
+
vertical-align: top;
|
|
558
|
+
-webkit-touch-callout: none;
|
|
559
|
+
-webkit-user-select: none;
|
|
560
|
+
-moz-user-select: none;
|
|
561
|
+
-ms-user-select: none;
|
|
562
|
+
user-select: none;
|
|
563
|
+
border-color: var(--oruga-datepicker-btn-border-color, #dbdbdb);
|
|
564
|
+
color: var(--oruga-datepicker-btn-color, #363636);
|
|
565
|
+
}
|
|
566
|
+
.o-dpck__header__previous:hover, .o-dpck__header__next:hover {
|
|
567
|
+
text-decoration: none;
|
|
568
|
+
}
|
|
569
|
+
.o-dpck__header__previous {
|
|
570
|
+
order: 1;
|
|
571
|
+
}
|
|
572
|
+
.o-dpck__header__next {
|
|
573
|
+
order: 3;
|
|
574
|
+
}
|
|
575
|
+
.o-dpck__header__list {
|
|
576
|
+
order: 2;
|
|
577
|
+
align-items: center;
|
|
578
|
+
display: flex;
|
|
579
|
+
justify-content: center;
|
|
580
|
+
text-align: center;
|
|
581
|
+
list-style: none;
|
|
582
|
+
flex-wrap: wrap;
|
|
583
|
+
margin: 0;
|
|
584
|
+
padding: 0;
|
|
585
|
+
margin-left: -0.125rem;
|
|
586
|
+
margin-right: -0.125rem;
|
|
587
|
+
}
|
|
588
|
+
.o-dpck__header__list > * {
|
|
589
|
+
margin-left: 0.125rem;
|
|
590
|
+
margin-right: 0.125rem;
|
|
591
|
+
}
|
|
592
|
+
.o-dpck__table, .o-dpck__molist.nth {
|
|
593
|
+
display: table;
|
|
594
|
+
margin: 0 auto 0 auto;
|
|
595
|
+
}
|
|
596
|
+
.o-dpck__table__head, .o-dpck__molist.nth__head {
|
|
597
|
+
display: table-header-group;
|
|
598
|
+
}
|
|
599
|
+
.o-dpck__table__body, .o-dpck__molist.nth__body {
|
|
600
|
+
display: table-row-group;
|
|
601
|
+
}
|
|
602
|
+
.o-dpck__table__row, .o-dpck__molist.nth__row {
|
|
603
|
+
display: table-row;
|
|
604
|
+
}
|
|
605
|
+
.o-dpck__table__cell, .o-dpck__molist.nth__cell {
|
|
606
|
+
text-align: center;
|
|
607
|
+
vertical-align: middle;
|
|
608
|
+
display: table-cell;
|
|
609
|
+
text-decoration: none;
|
|
610
|
+
}
|
|
611
|
+
.o-dpck__table__cell--unselectable, .o-dpck__molist.nth__cell--unselectable {
|
|
612
|
+
color: var(--oruga-datepicker-item-disabled-color, #b5b5b5);
|
|
613
|
+
}
|
|
614
|
+
.o-dpck__table__cell--selectable, .o-dpck__molist.nth__cell--selectable {
|
|
615
|
+
color: var(--oruga-datepicker-item-selectable-color, #4a4a4a);
|
|
616
|
+
}
|
|
617
|
+
.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered {
|
|
618
|
+
background-color: var(--oruga-datepicker-item-hovered-background-color, #7a7a7a);
|
|
619
|
+
color: var(--oruga-datepicker-item-hovered-color, #dbdbdb);
|
|
620
|
+
}
|
|
621
|
+
.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered {
|
|
622
|
+
color: var(--oruga-datepicker-item-hovered-color, #dbdbdb);
|
|
623
|
+
}
|
|
624
|
+
.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered {
|
|
625
|
+
background-color: var(--oruga-datepicker-item-hovered-background-color, #7a7a7a);
|
|
626
|
+
color: var(--oruga-datepicker-item-hovered-color, #dbdbdb);
|
|
627
|
+
}
|
|
628
|
+
.o-dpck__table__cell--selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered), .o-dpck__molist.nth__cell--selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered) {
|
|
629
|
+
background-color: var(--oruga-datepicker-item-selected-background-color, #445e00);
|
|
630
|
+
color: var(--oruga-datepicker-item-selected-color, #ffffff);
|
|
631
|
+
}
|
|
632
|
+
.o-dpck__table__cell--first-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered), .o-dpck__molist.nth__cell--first-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered) {
|
|
633
|
+
background-color: var(--oruga-datepicker-item-selected-background-color, #445e00);
|
|
634
|
+
color: var(--oruga-datepicker-item-selected-color, #ffffff);
|
|
635
|
+
}
|
|
636
|
+
.o-dpck__table__cell--within-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered), .o-dpck__molist.nth__cell--within-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered) {
|
|
637
|
+
background-color: var(--oruga-datepicker-item-selected-within-background-color, rgba(68, 94, 0, 0.5));
|
|
638
|
+
}
|
|
639
|
+
.o-dpck__table__cell--last-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered), .o-dpck__molist.nth__cell--last-selected:not(.o-dpck__table__cell--first-hovered, .o-dpck__molist.nth__cell--first-hovered):not(.o-dpck__table__cell--within-hovered, .o-dpck__molist.nth__cell--within-hovered):not(.o-dpck__table__cell--last-hovered, .o-dpck__molist.nth__cell--last-hovered) {
|
|
640
|
+
background-color: var(--oruga-datepicker-item-selected-background-color, #445e00);
|
|
641
|
+
color: var(--oruga-datepicker-item-selected-color, #ffffff);
|
|
642
|
+
}
|
|
643
|
+
.o-dpck__table__cell--invisible, .o-dpck__molist.nth__cell--invisible {
|
|
644
|
+
visibility: hidden;
|
|
645
|
+
}
|
|
646
|
+
.o-dpck__table__cell--events, .o-dpck__molist.nth__cell--events {
|
|
647
|
+
position: relative;
|
|
648
|
+
}
|
|
649
|
+
.o-dpck__table__events, .o-dpck__molist.nth__events {
|
|
650
|
+
display: flex;
|
|
651
|
+
justify-content: center;
|
|
652
|
+
position: absolute;
|
|
653
|
+
width: 100%;
|
|
654
|
+
left: 0;
|
|
655
|
+
bottom: 15%;
|
|
656
|
+
}
|
|
657
|
+
.o-dpck__table__event, .o-dpck__molist.nth__event {
|
|
658
|
+
background-color: var(--oruga-datepicker-event-background-color, #b5b5b5);
|
|
659
|
+
}
|
|
660
|
+
.o-dpck__table__event--dots, .o-dpck__molist.nth__event--dots {
|
|
661
|
+
border-radius: 50%;
|
|
662
|
+
}
|
|
663
|
+
.o-dpck__table__event--bars, .o-dpck__molist.nth__event--bars {
|
|
664
|
+
width: 100%;
|
|
665
|
+
}
|
|
666
|
+
.o-dpck__molist.nth__table {
|
|
667
|
+
display: inline-flex;
|
|
668
|
+
flex-wrap: wrap;
|
|
669
|
+
flex-direction: row;
|
|
670
|
+
width: 17rem;
|
|
671
|
+
}
|
|
672
|
+
.o-dpck__molist.nth__cell {
|
|
673
|
+
display: flex;
|
|
674
|
+
align-items: center;
|
|
675
|
+
justify-content: center;
|
|
676
|
+
width: 33.33%;
|
|
677
|
+
height: 2.5rem;
|
|
678
|
+
}
|
|
679
|
+
.o-dpck--mobile .o-dpck__header__previous {
|
|
680
|
+
order: 1;
|
|
681
|
+
flex-grow: 1;
|
|
682
|
+
flex-shrink: 1;
|
|
683
|
+
}
|
|
684
|
+
.o-dpck--mobile .o-dpck__header__next {
|
|
685
|
+
order: 3;
|
|
686
|
+
flex-grow: 1;
|
|
687
|
+
flex-shrink: 1;
|
|
688
|
+
}
|
|
689
|
+
.o-dpck--mobile .o-dpck__header__list {
|
|
690
|
+
order: 2;
|
|
691
|
+
flex-grow: 1;
|
|
692
|
+
flex-shrink: 1;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
/* @docs */
|
|
696
|
+
/* @docs */
|
|
697
|
+
.o-dtpck__time {
|
|
698
|
+
display: flex;
|
|
699
|
+
justify-content: center;
|
|
700
|
+
align-items: center;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
/* @docs */
|
|
704
|
+
/* @docs */
|
|
705
|
+
.o-drop {
|
|
706
|
+
display: inline-flex;
|
|
707
|
+
position: relative;
|
|
708
|
+
vertical-align: top;
|
|
709
|
+
}
|
|
710
|
+
.o-drop--inline {
|
|
711
|
+
display: inline;
|
|
712
|
+
}
|
|
713
|
+
.o-drop--inline .o-drop__menu {
|
|
714
|
+
position: static;
|
|
715
|
+
display: inline-block;
|
|
716
|
+
padding: 0;
|
|
717
|
+
}
|
|
718
|
+
.o-drop__overlay {
|
|
719
|
+
position: fixed;
|
|
720
|
+
bottom: 0;
|
|
721
|
+
left: 0;
|
|
722
|
+
right: 0;
|
|
723
|
+
top: 0;
|
|
724
|
+
cursor: pointer;
|
|
725
|
+
display: none;
|
|
726
|
+
background-color: var(--oruga-dropdown-mobile-overlay-color, rgba(0, 0, 0, 0.86));
|
|
727
|
+
z-index: var(--oruga-dropdown-mobile-overlay-zindex, 40);
|
|
728
|
+
}
|
|
729
|
+
.o-drop__trigger {
|
|
730
|
+
width: 100%;
|
|
731
|
+
}
|
|
732
|
+
.o-drop__menu {
|
|
733
|
+
position: absolute;
|
|
734
|
+
left: 0;
|
|
735
|
+
top: 100%;
|
|
736
|
+
display: block;
|
|
737
|
+
z-index: var(--oruga-dropdown-menu-zindex, 20);
|
|
738
|
+
background-color: var(--oruga-dropdown-menu-background, #ffffff);
|
|
739
|
+
}
|
|
740
|
+
.o-drop__menu--top-left {
|
|
741
|
+
top: auto;
|
|
742
|
+
bottom: 100%;
|
|
743
|
+
right: 0;
|
|
744
|
+
left: auto;
|
|
745
|
+
}
|
|
746
|
+
.o-drop__menu--bottom-left {
|
|
747
|
+
right: 0;
|
|
748
|
+
left: auto;
|
|
749
|
+
}
|
|
750
|
+
.o-drop__menu--top-right {
|
|
751
|
+
top: auto;
|
|
752
|
+
bottom: 100%;
|
|
753
|
+
}
|
|
754
|
+
.o-drop__item {
|
|
755
|
+
display: block;
|
|
756
|
+
position: relative;
|
|
757
|
+
cursor: pointer;
|
|
758
|
+
}
|
|
759
|
+
.o-drop__item--disabled {
|
|
760
|
+
opacity: var(--oruga-dropdown-item-disabled-opacity, 0.5);
|
|
761
|
+
pointer-events: none;
|
|
762
|
+
}
|
|
763
|
+
.o-drop__item--active {
|
|
764
|
+
background-color: var(--oruga-dropdown-item-active-background-color, #445e00);
|
|
765
|
+
color: var(--oruga-dropdown-item-active-color, #ffffff);
|
|
766
|
+
}
|
|
767
|
+
.o-drop--expanded {
|
|
768
|
+
width: 100%;
|
|
769
|
+
}
|
|
770
|
+
.o-drop--expanded .o-drop__menu {
|
|
771
|
+
width: 100%;
|
|
772
|
+
}
|
|
773
|
+
.o-drop--disabled {
|
|
774
|
+
opacity: var(--oruga-dropdown-disabled-opacity, 0.5);
|
|
775
|
+
pointer-events: none;
|
|
776
|
+
}
|
|
777
|
+
.o-drop--mobile > .o-drop__menu {
|
|
778
|
+
position: fixed;
|
|
779
|
+
top: 25%;
|
|
780
|
+
left: 50%;
|
|
781
|
+
bottom: auto;
|
|
782
|
+
right: auto;
|
|
783
|
+
transform: translate3d(-50%, -25%, 0);
|
|
784
|
+
overflow-y: auto;
|
|
785
|
+
z-index: var(--oruga-dropdown-mobile-zindex, 50);
|
|
786
|
+
}
|
|
787
|
+
.o-drop--mobile > .o-drop__overlay {
|
|
788
|
+
display: block;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
/* @docs */
|
|
792
|
+
/* @docs */
|
|
793
|
+
.o-field {
|
|
794
|
+
flex-grow: 1;
|
|
795
|
+
}
|
|
796
|
+
.o-field__label {
|
|
797
|
+
display: block;
|
|
798
|
+
}
|
|
799
|
+
.o-field__message {
|
|
800
|
+
display: block;
|
|
801
|
+
}
|
|
802
|
+
.o-field--addons {
|
|
803
|
+
display: flex;
|
|
804
|
+
justify-content: flex-start;
|
|
805
|
+
}
|
|
806
|
+
.o-field--addons > *:first-child:not(:only-child) button,
|
|
807
|
+
.o-field--addons > button:first-child,
|
|
808
|
+
.o-field--addons > *:first-child:not(:only-child) input,
|
|
809
|
+
.o-field--addons > input:first-child,
|
|
810
|
+
.o-field--addons > *:first-child:not(:only-child) select,
|
|
811
|
+
.o-field--addons > select:first-child {
|
|
812
|
+
border-bottom-right-radius: 0;
|
|
813
|
+
border-top-right-radius: 0;
|
|
814
|
+
}
|
|
815
|
+
.o-field--addons > *:last-child:not(:only-child) button,
|
|
816
|
+
.o-field--addons > button:last-child,
|
|
817
|
+
.o-field--addons > *:last-child:not(:only-child) input,
|
|
818
|
+
.o-field--addons > input:last-child,
|
|
819
|
+
.o-field--addons > *:last-child:not(:only-child) select,
|
|
820
|
+
.o-field--addons > select:last-child {
|
|
821
|
+
border-bottom-left-radius: 0;
|
|
822
|
+
border-top-left-radius: 0;
|
|
823
|
+
}
|
|
824
|
+
.o-field--addons > *:not(:first-child):not(:last-child) button,
|
|
825
|
+
.o-field--addons > button:not(:first-child):not(:last-child),
|
|
826
|
+
.o-field--addons > *:not(:first-child):not(:last-child) input,
|
|
827
|
+
.o-field--addons > input:not(:first-child):not(:last-child),
|
|
828
|
+
.o-field--addons > *:not(:first-child):not(:last-child) select,
|
|
829
|
+
.o-field--addons > select:not(:first-child):not(:last-child) {
|
|
830
|
+
border-radius: 0;
|
|
831
|
+
}
|
|
832
|
+
.o-field--grouped {
|
|
833
|
+
display: flex;
|
|
834
|
+
margin-left: -0.37rem;
|
|
835
|
+
margin-right: -0.37rem;
|
|
836
|
+
}
|
|
837
|
+
.o-field--grouped > * {
|
|
838
|
+
margin-left: 0.37rem;
|
|
839
|
+
margin-right: 0.37rem;
|
|
840
|
+
}
|
|
841
|
+
.o-field--grouped-multiline {
|
|
842
|
+
flex-wrap: wrap;
|
|
843
|
+
}
|
|
844
|
+
.o-field__horizontal-body {
|
|
845
|
+
display: flex;
|
|
846
|
+
flex-basis: 0;
|
|
847
|
+
flex-grow: 5;
|
|
848
|
+
flex-shrink: 1;
|
|
849
|
+
margin-left: -0.37rem;
|
|
850
|
+
margin-right: -0.37rem;
|
|
851
|
+
}
|
|
852
|
+
.o-field__horizontal-body > * {
|
|
853
|
+
margin-left: 0.37rem;
|
|
854
|
+
margin-right: 0.37rem;
|
|
855
|
+
}
|
|
856
|
+
.o-field--horizontal {
|
|
857
|
+
display: flex;
|
|
858
|
+
}
|
|
859
|
+
.o-field__horizontal-label {
|
|
860
|
+
flex-basis: 0;
|
|
861
|
+
flex-grow: 1;
|
|
862
|
+
flex-shrink: 0;
|
|
863
|
+
margin: 0 1.5rem 0 0;
|
|
864
|
+
text-align: right;
|
|
865
|
+
}
|
|
866
|
+
.o-field--mobile .o-field__horizontal-body {
|
|
867
|
+
all: unset;
|
|
868
|
+
}
|
|
869
|
+
.o-field--mobile.o-field--horizontal {
|
|
870
|
+
all: unset;
|
|
871
|
+
}
|
|
872
|
+
.o-field--mobile .o-field__horizontal-label {
|
|
873
|
+
all: unset;
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
/* @docs */
|
|
877
|
+
/* @docs */
|
|
878
|
+
@keyframes icon-spin {
|
|
879
|
+
0% {
|
|
880
|
+
-webkit-transform: rotate(0deg);
|
|
881
|
+
transform: rotate(0deg);
|
|
882
|
+
}
|
|
883
|
+
100% {
|
|
884
|
+
-webkit-transform: rotate(359deg);
|
|
885
|
+
transform: rotate(359deg);
|
|
886
|
+
}
|
|
887
|
+
}
|
|
888
|
+
.o-icon {
|
|
889
|
+
align-items: center;
|
|
890
|
+
display: inline-flex;
|
|
891
|
+
justify-content: center;
|
|
892
|
+
transition: transform 150ms ease-out, opacity 300ms ease-out;
|
|
893
|
+
}
|
|
894
|
+
.o-icon--clickable {
|
|
895
|
+
pointer-events: auto;
|
|
896
|
+
cursor: pointer;
|
|
897
|
+
}
|
|
898
|
+
.o-icon--spin {
|
|
899
|
+
animation-name: icon-spin;
|
|
900
|
+
animation-iteration-count: infinite;
|
|
901
|
+
animation-timing-function: linear;
|
|
902
|
+
animation-duration: var(--oruga-icon-spin-duration, 2s);
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
/* @docs */
|
|
906
|
+
/* @docs */
|
|
907
|
+
.o-ctrl-input {
|
|
908
|
+
display: block;
|
|
909
|
+
position: relative;
|
|
910
|
+
}
|
|
911
|
+
.o-ctrl-input--expanded {
|
|
912
|
+
width: 100%;
|
|
913
|
+
flex-grow: 1;
|
|
914
|
+
flex-shrink: 1;
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.o-input {
|
|
918
|
+
-moz-appearance: none;
|
|
919
|
+
-webkit-appearance: none;
|
|
920
|
+
display: inline-flex;
|
|
921
|
+
position: relative;
|
|
922
|
+
vertical-align: top;
|
|
923
|
+
width: 100%;
|
|
924
|
+
}
|
|
925
|
+
.o-input__textarea {
|
|
926
|
+
display: block;
|
|
927
|
+
max-width: 100%;
|
|
928
|
+
min-width: 100%;
|
|
929
|
+
height: auto;
|
|
930
|
+
resize: vertical;
|
|
931
|
+
}
|
|
932
|
+
.o-input__counter {
|
|
933
|
+
display: block;
|
|
934
|
+
float: right;
|
|
935
|
+
}
|
|
936
|
+
.o-input__icon-left, .o-input__icon-right {
|
|
937
|
+
position: absolute;
|
|
938
|
+
top: 0;
|
|
939
|
+
height: 100%;
|
|
940
|
+
}
|
|
941
|
+
.o-input__icon-right {
|
|
942
|
+
right: 0;
|
|
943
|
+
}
|
|
944
|
+
.o-input__icon-left {
|
|
945
|
+
left: 0;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
/* @docs */
|
|
949
|
+
/* @docs */
|
|
950
|
+
.o-inputit {
|
|
951
|
+
display: block;
|
|
952
|
+
}
|
|
953
|
+
.o-inputit__container {
|
|
954
|
+
display: flex;
|
|
955
|
+
align-items: center;
|
|
956
|
+
justify-content: flex-start;
|
|
957
|
+
position: relative;
|
|
958
|
+
vertical-align: top;
|
|
959
|
+
flex-wrap: wrap;
|
|
960
|
+
border-color: var(--oruga-inputitems-border-color, #dbdbdb);
|
|
961
|
+
border-style: var(--oruga-inputitems-border-style, solid);
|
|
962
|
+
border-width: var(--oruga-inputitems-border-width, 1px);
|
|
963
|
+
color: var(--oruga-inputitems-color, #363636);
|
|
964
|
+
}
|
|
965
|
+
.o-inputit__autocomplete {
|
|
966
|
+
position: static;
|
|
967
|
+
flex: 1;
|
|
968
|
+
}
|
|
969
|
+
.o-inputit__input {
|
|
970
|
+
border: none;
|
|
971
|
+
box-shadow: none;
|
|
972
|
+
}
|
|
973
|
+
.o-inputit__input:focus {
|
|
974
|
+
box-shadow: none;
|
|
975
|
+
}
|
|
976
|
+
.o-inputit__item {
|
|
977
|
+
display: inline-flex;
|
|
978
|
+
justify-content: center;
|
|
979
|
+
align-items: center;
|
|
980
|
+
position: relative;
|
|
981
|
+
margin-left: -0.1875em;
|
|
982
|
+
margin-right: -0.1875em;
|
|
983
|
+
background-color: var(--oruga-inputitems-item-background-color, #445e00);
|
|
984
|
+
color: var(--oruga-inputitems-item-color, #ffffff);
|
|
985
|
+
}
|
|
986
|
+
.o-inputit__item > * {
|
|
987
|
+
margin-left: 0.1875em;
|
|
988
|
+
margin-right: 0.1875em;
|
|
989
|
+
}
|
|
990
|
+
.o-inputit__counter {
|
|
991
|
+
display: block;
|
|
992
|
+
float: right;
|
|
993
|
+
}
|
|
994
|
+
.o-inputit--expanded {
|
|
995
|
+
width: 100%;
|
|
996
|
+
flex-grow: 1;
|
|
997
|
+
flex-shrink: 1;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
/* @docs */
|
|
1001
|
+
/* @docs */
|
|
1002
|
+
.o-load {
|
|
1003
|
+
position: absolute;
|
|
1004
|
+
bottom: 0;
|
|
1005
|
+
left: 0;
|
|
1006
|
+
right: 0;
|
|
1007
|
+
top: 0;
|
|
1008
|
+
align-items: center;
|
|
1009
|
+
display: flex;
|
|
1010
|
+
justify-content: center;
|
|
1011
|
+
overflow: hidden;
|
|
1012
|
+
}
|
|
1013
|
+
.o-load--fullpage {
|
|
1014
|
+
position: fixed;
|
|
1015
|
+
}
|
|
1016
|
+
.o-load__overlay {
|
|
1017
|
+
position: absolute;
|
|
1018
|
+
bottom: 0;
|
|
1019
|
+
left: 0;
|
|
1020
|
+
right: 0;
|
|
1021
|
+
top: 0;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
/* @docs */
|
|
1025
|
+
/* @docs */
|
|
1026
|
+
.o-menu-list .o-menu-list,
|
|
1027
|
+
.o-menu-list .o-menu-item__wrapper {
|
|
1028
|
+
list-style: none;
|
|
1029
|
+
}
|
|
1030
|
+
.o-menu-label {
|
|
1031
|
+
text-transform: uppercase;
|
|
1032
|
+
}
|
|
1033
|
+
.o-menu-item {
|
|
1034
|
+
display: block;
|
|
1035
|
+
list-style: none;
|
|
1036
|
+
}
|
|
1037
|
+
/* @docs */
|
|
1038
|
+
/* @docs */
|
|
1039
|
+
.o-modal {
|
|
1040
|
+
display: flex;
|
|
1041
|
+
flex-direction: column;
|
|
1042
|
+
justify-content: center;
|
|
1043
|
+
align-items: center;
|
|
1044
|
+
overflow: hidden;
|
|
1045
|
+
position: fixed;
|
|
1046
|
+
bottom: 0;
|
|
1047
|
+
left: 0;
|
|
1048
|
+
right: 0;
|
|
1049
|
+
top: 0;
|
|
1050
|
+
z-index: var(--oruga-modal-zindex, 40);
|
|
1051
|
+
}
|
|
1052
|
+
.o-modal__overlay {
|
|
1053
|
+
bottom: 0;
|
|
1054
|
+
left: 0;
|
|
1055
|
+
position: absolute;
|
|
1056
|
+
right: 0;
|
|
1057
|
+
top: 0;
|
|
1058
|
+
background-color: var(--oruga-modal-overlay-background-color, hsla(0, 0%, 4%, 0.86));
|
|
1059
|
+
}
|
|
1060
|
+
.o-modal__content {
|
|
1061
|
+
overflow: auto;
|
|
1062
|
+
position: relative;
|
|
1063
|
+
background-color: var(--oruga-modal-content-background-color, #ffffff);
|
|
1064
|
+
}
|
|
1065
|
+
.o-modal__content--full-screen {
|
|
1066
|
+
width: 100%;
|
|
1067
|
+
height: 100%;
|
|
1068
|
+
max-height: 100vh;
|
|
1069
|
+
margin: 0;
|
|
1070
|
+
}
|
|
1071
|
+
.o-modal__close {
|
|
1072
|
+
background: none;
|
|
1073
|
+
position: fixed;
|
|
1074
|
+
border: none;
|
|
1075
|
+
display: inline-block;
|
|
1076
|
+
vertical-align: top;
|
|
1077
|
+
right: var(--oruga-modal-close-right, 20px);
|
|
1078
|
+
top: var(--oruga-modal-close-top, 20px);
|
|
1079
|
+
}
|
|
1080
|
+
.o-modal--mobile .o-modal__content {
|
|
1081
|
+
width: 100%;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
/* @docs */
|
|
1085
|
+
/* @docs */
|
|
1086
|
+
.o-notification {
|
|
1087
|
+
background-color: var(--oruga-notification-background-color, #445e00);
|
|
1088
|
+
color: var(--oruga-notification-color, #ffffff);
|
|
1089
|
+
position: relative;
|
|
1090
|
+
transform-origin: 50% 0;
|
|
1091
|
+
}
|
|
1092
|
+
.o-notification__content {
|
|
1093
|
+
flex-basis: auto;
|
|
1094
|
+
flex-grow: 1;
|
|
1095
|
+
flex-shrink: 1;
|
|
1096
|
+
text-align: inherit;
|
|
1097
|
+
overflow-y: hidden;
|
|
1098
|
+
overflow-x: auto;
|
|
1099
|
+
}
|
|
1100
|
+
.o-notification__wrapper {
|
|
1101
|
+
align-items: flex-start;
|
|
1102
|
+
display: flex;
|
|
1103
|
+
text-align: inherit;
|
|
1104
|
+
padding-top: 0;
|
|
1105
|
+
border: 0;
|
|
1106
|
+
}
|
|
1107
|
+
.o-notification__icon {
|
|
1108
|
+
flex-basis: auto;
|
|
1109
|
+
flex-grow: 0;
|
|
1110
|
+
flex-shrink: 0;
|
|
1111
|
+
}
|
|
1112
|
+
.o-notification__close {
|
|
1113
|
+
position: absolute;
|
|
1114
|
+
border: none;
|
|
1115
|
+
cursor: pointer;
|
|
1116
|
+
pointer-events: auto;
|
|
1117
|
+
display: flex;
|
|
1118
|
+
justify-content: center;
|
|
1119
|
+
align-items: center;
|
|
1120
|
+
flex-grow: 0;
|
|
1121
|
+
flex-shrink: 0;
|
|
1122
|
+
vertical-align: top;
|
|
1123
|
+
right: var(--oruga-notification-close-right, 0.5rem);
|
|
1124
|
+
top: var(--oruga-notification-close-top, 0.5rem);
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
.o-notices {
|
|
1128
|
+
position: fixed;
|
|
1129
|
+
display: flex;
|
|
1130
|
+
top: 0;
|
|
1131
|
+
bottom: 0;
|
|
1132
|
+
left: 0;
|
|
1133
|
+
right: 0;
|
|
1134
|
+
overflow: hidden;
|
|
1135
|
+
pointer-events: none;
|
|
1136
|
+
padding: var(--oruga-notification-notices-padding, 2em);
|
|
1137
|
+
z-index: var(--oruga-notification-notices-zindex, 1000);
|
|
1138
|
+
}
|
|
1139
|
+
.o-notices .o-notification {
|
|
1140
|
+
pointer-events: stroke;
|
|
1141
|
+
max-width: 600px;
|
|
1142
|
+
}
|
|
1143
|
+
.o-notices .o-notification--top, .o-notices .o-notification--bottom {
|
|
1144
|
+
align-self: center;
|
|
1145
|
+
}
|
|
1146
|
+
.o-notices .o-notification--top-right, .o-notices .o-notification--bottom-right {
|
|
1147
|
+
align-self: flex-end;
|
|
1148
|
+
}
|
|
1149
|
+
.o-notices .o-notification--top-left, .o-notices .o-notification--bottom-left {
|
|
1150
|
+
align-self: flex-start;
|
|
1151
|
+
}
|
|
1152
|
+
.o-notices--top {
|
|
1153
|
+
flex-direction: column;
|
|
1154
|
+
}
|
|
1155
|
+
.o-notices--bottom {
|
|
1156
|
+
flex-direction: column-reverse;
|
|
1157
|
+
}
|
|
1158
|
+
.o-notices--bottom .o-notification {
|
|
1159
|
+
margin-bottom: 0;
|
|
1160
|
+
}
|
|
1161
|
+
.o-notices--bottom .o-notification:not(:first-child) {
|
|
1162
|
+
margin-bottom: 1.5rem;
|
|
1163
|
+
}
|
|
1164
|
+
.o-notices__custom-container {
|
|
1165
|
+
position: absolute;
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
/* @docs */
|
|
1169
|
+
/* @docs */
|
|
1170
|
+
.o-pag {
|
|
1171
|
+
align-items: center;
|
|
1172
|
+
display: flex;
|
|
1173
|
+
text-align: center;
|
|
1174
|
+
justify-content: space-between;
|
|
1175
|
+
}
|
|
1176
|
+
.o-pag__link {
|
|
1177
|
+
-moz-appearance: none;
|
|
1178
|
+
-webkit-appearance: none;
|
|
1179
|
+
align-items: center;
|
|
1180
|
+
box-shadow: none;
|
|
1181
|
+
display: inline-flex;
|
|
1182
|
+
position: relative;
|
|
1183
|
+
vertical-align: top;
|
|
1184
|
+
justify-content: center;
|
|
1185
|
+
text-align: center;
|
|
1186
|
+
text-decoration: none;
|
|
1187
|
+
cursor: pointer;
|
|
1188
|
+
-webkit-touch-callout: none;
|
|
1189
|
+
-webkit-user-select: none;
|
|
1190
|
+
-moz-user-select: none;
|
|
1191
|
+
-ms-user-select: none;
|
|
1192
|
+
user-select: none;
|
|
1193
|
+
}
|
|
1194
|
+
.o-pag__link:hover {
|
|
1195
|
+
text-decoration: none;
|
|
1196
|
+
}
|
|
1197
|
+
.o-pag__link--disabled {
|
|
1198
|
+
pointer-events: none;
|
|
1199
|
+
}
|
|
1200
|
+
.o-pag__link--current {
|
|
1201
|
+
pointer-events: none;
|
|
1202
|
+
background-color: var(--oruga-pagination-link-current-background-color, #445e00);
|
|
1203
|
+
border-color: var(--oruga-pagination-link-current-border-color, #445e00);
|
|
1204
|
+
color: var(--oruga-pagination-link-current-color, #fff);
|
|
1205
|
+
}
|
|
1206
|
+
.o-pag__ellipsis {
|
|
1207
|
+
justify-content: center;
|
|
1208
|
+
text-align: center;
|
|
1209
|
+
pointer-events: none;
|
|
1210
|
+
}
|
|
1211
|
+
.o-pag--simple {
|
|
1212
|
+
justify-content: normal;
|
|
1213
|
+
}
|
|
1214
|
+
.o-pag--centered {
|
|
1215
|
+
justify-content: center;
|
|
1216
|
+
}
|
|
1217
|
+
.o-pag--centered .o-pag__previous {
|
|
1218
|
+
order: 1;
|
|
1219
|
+
}
|
|
1220
|
+
.o-pag--centered .o-pag__next {
|
|
1221
|
+
order: 3;
|
|
1222
|
+
}
|
|
1223
|
+
.o-pag--centered .o-pag__list {
|
|
1224
|
+
justify-content: center;
|
|
1225
|
+
order: 2;
|
|
1226
|
+
}
|
|
1227
|
+
.o-pag--right {
|
|
1228
|
+
justify-content: flex-end;
|
|
1229
|
+
}
|
|
1230
|
+
.o-pag--right .o-pag__previous {
|
|
1231
|
+
order: 1;
|
|
1232
|
+
}
|
|
1233
|
+
.o-pag--right .o-pag__next {
|
|
1234
|
+
order: 2;
|
|
1235
|
+
}
|
|
1236
|
+
.o-pag--right .o-pag__list {
|
|
1237
|
+
justify-content: flex-end;
|
|
1238
|
+
order: 2;
|
|
1239
|
+
}
|
|
1240
|
+
.o-pag__next {
|
|
1241
|
+
order: 3;
|
|
1242
|
+
}
|
|
1243
|
+
.o-pag__previous {
|
|
1244
|
+
order: 2;
|
|
1245
|
+
}
|
|
1246
|
+
.o-pag__list {
|
|
1247
|
+
align-items: center;
|
|
1248
|
+
display: flex;
|
|
1249
|
+
text-align: center;
|
|
1250
|
+
list-style: none;
|
|
1251
|
+
flex-wrap: wrap;
|
|
1252
|
+
margin: 0;
|
|
1253
|
+
padding: 0;
|
|
1254
|
+
flex-grow: 1;
|
|
1255
|
+
flex-shrink: 1;
|
|
1256
|
+
justify-content: flex-start;
|
|
1257
|
+
order: 1;
|
|
1258
|
+
}
|
|
1259
|
+
.o-pag--mobile {
|
|
1260
|
+
justify-content: flex-start;
|
|
1261
|
+
flex-wrap: wrap;
|
|
1262
|
+
}
|
|
1263
|
+
.o-pag--mobile .o-pag__link {
|
|
1264
|
+
flex-grow: 1;
|
|
1265
|
+
flex-shrink: 1;
|
|
1266
|
+
}
|
|
1267
|
+
.o-pag--mobile .o-pag__previous {
|
|
1268
|
+
flex-grow: 1;
|
|
1269
|
+
flex-shrink: 1;
|
|
1270
|
+
order: 0;
|
|
1271
|
+
}
|
|
1272
|
+
.o-pag--mobile .o-pag__next {
|
|
1273
|
+
flex-grow: 1;
|
|
1274
|
+
flex-shrink: 1;
|
|
1275
|
+
order: 0;
|
|
1276
|
+
}
|
|
1277
|
+
.o-pag--mobile .o-pag__ellipsis {
|
|
1278
|
+
flex-grow: 1;
|
|
1279
|
+
flex-shrink: 1;
|
|
1280
|
+
}
|
|
1281
|
+
.o-pag--mobile .o-pag__list {
|
|
1282
|
+
order: 0;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
/* @docs */
|
|
1286
|
+
/* @docs */
|
|
1287
|
+
.o-radio {
|
|
1288
|
+
display: inline-flex;
|
|
1289
|
+
align-items: center;
|
|
1290
|
+
cursor: pointer;
|
|
1291
|
+
-webkit-touch-callout: none;
|
|
1292
|
+
-webkit-user-select: none;
|
|
1293
|
+
-moz-user-select: none;
|
|
1294
|
+
-ms-user-select: none;
|
|
1295
|
+
user-select: none;
|
|
1296
|
+
}
|
|
1297
|
+
.o-radio__check {
|
|
1298
|
+
width: var(--oruga-radio-size, 1rem);
|
|
1299
|
+
height: var(--oruga-radio-size, 1rem);
|
|
1300
|
+
margin: 0;
|
|
1301
|
+
vertical-align: top;
|
|
1302
|
+
background-position: center;
|
|
1303
|
+
background-size: contain;
|
|
1304
|
+
-webkit-appearance: none;
|
|
1305
|
+
-moz-appearance: none;
|
|
1306
|
+
appearance: none;
|
|
1307
|
+
-webkit-print-color-adjust: exact;
|
|
1308
|
+
print-color-adjust: exact;
|
|
1309
|
+
border-radius: 50%;
|
|
1310
|
+
cursor: pointer;
|
|
1311
|
+
background-repeat: no-repeat;
|
|
1312
|
+
transition-property: background;
|
|
1313
|
+
background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(10.1032,0,0,10.1032,-255.068,-313.298)'%3E%3Ccircle cx='30.195' cy='35.959' r='4.85' style='fill:var(--oruga-radio-active-background-color, %23445e00);'/%3E%3C/g%3E%3C/svg%3E");
|
|
1314
|
+
}
|
|
1315
|
+
.o-radio__check--checked {
|
|
1316
|
+
background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xml:space='preserve' xmlns:serif='http://www.serif.com/' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;'%3E%3Cg transform='matrix(4.38544,0,0,4.38544,-94.4336,-58.9876)'%3E%3Cpath d='M32.935,13.679C39.102,13.679 44.108,18.685 44.108,24.852C44.108,31.019 39.102,36.025 32.935,36.025C26.768,36.025 21.761,31.019 21.761,24.852C21.761,18.685 26.768,13.679 32.935,13.679ZM32.798,17.05C37.105,17.05 40.601,20.546 40.601,24.852C40.601,29.158 37.105,32.655 32.798,32.655C28.492,32.655 24.996,29.158 24.996,24.852C24.996,20.546 28.492,17.05 32.798,17.05Z' style='fill:var(--oruga-radio-active-background-color, %23445e00);'/%3E%3Ccircle cx='32.84' cy='24.8' r='7.9' style='fill:transparent;'/%3E%3C/g%3E%3C/svg%3E");
|
|
1317
|
+
}
|
|
1318
|
+
.o-radio--disabled {
|
|
1319
|
+
opacity: var(--oruga-radio-disabled-opacity, 0.5);
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
/* @docs */
|
|
1323
|
+
/* @docs */
|
|
1324
|
+
.o-ctrl-sel {
|
|
1325
|
+
display: inline-flex;
|
|
1326
|
+
position: relative;
|
|
1327
|
+
}
|
|
1328
|
+
.o-ctrl-sel--expanded {
|
|
1329
|
+
width: 100%;
|
|
1330
|
+
flex-grow: 1;
|
|
1331
|
+
flex-shrink: 1;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.o-sel {
|
|
1335
|
+
-moz-appearance: none;
|
|
1336
|
+
-webkit-appearance: none;
|
|
1337
|
+
display: inline-block;
|
|
1338
|
+
position: relative;
|
|
1339
|
+
vertical-align: top;
|
|
1340
|
+
cursor: pointer;
|
|
1341
|
+
justify-content: flex-start;
|
|
1342
|
+
align-items: center;
|
|
1343
|
+
}
|
|
1344
|
+
.o-sel-arrow {
|
|
1345
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:serif='http://www.serif.com/' width='100%25' height='100%25' viewBox='0 0 100 100' version='1.1' xml:space='preserve' style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5;'%3E%3Cg transform='matrix(5.70052,0,0,5.70052,-1329.79,-547.054)'%3E%3Cpath d='M233.451,101.749L235.617,99.422L242.013,105.565L248.463,99.422L250.642,101.749L242.013,110.052L233.451,101.749Z' style='fill:;stroke:white;stroke-width:0.18px;'/%3E%3C/g%3E%3C/svg%3E");
|
|
1346
|
+
background-repeat: no-repeat;
|
|
1347
|
+
background-size: var(--oruga-select-arrow-size, 1rem);
|
|
1348
|
+
background-position: calc(100% - var(--oruga-select-arrow-size, 1rem) * 0.5) center;
|
|
1349
|
+
padding-right: calc(var(--oruga-select-arrow-size, 1rem) * 2);
|
|
1350
|
+
}
|
|
1351
|
+
.o-sel--multiple {
|
|
1352
|
+
height: auto;
|
|
1353
|
+
padding: 0;
|
|
1354
|
+
}
|
|
1355
|
+
.o-sel__icon-left, .o-sel__icon-right {
|
|
1356
|
+
position: absolute;
|
|
1357
|
+
top: 0;
|
|
1358
|
+
height: 100%;
|
|
1359
|
+
}
|
|
1360
|
+
.o-sel__icon-right {
|
|
1361
|
+
right: 0;
|
|
1362
|
+
}
|
|
1363
|
+
.o-sel__icon-left {
|
|
1364
|
+
left: 0;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
/* @docs */
|
|
1368
|
+
/* @docs */
|
|
1369
|
+
@keyframes skeleton-loading {
|
|
1370
|
+
0% {
|
|
1371
|
+
background-position: 100% 50%;
|
|
1372
|
+
}
|
|
1373
|
+
100% {
|
|
1374
|
+
background-position: 0 50%;
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
.o-sklt {
|
|
1378
|
+
display: inline-flex;
|
|
1379
|
+
flex-direction: column;
|
|
1380
|
+
vertical-align: middle;
|
|
1381
|
+
width: 100%;
|
|
1382
|
+
}
|
|
1383
|
+
.o-sklt__item {
|
|
1384
|
+
width: 100%;
|
|
1385
|
+
background: var(--oruga-skeleton-background, linear-gradient(90deg, #dbdbdb 25%, rgba(219, 219, 219, 0.5) 50%, #dbdbdb 75%));
|
|
1386
|
+
}
|
|
1387
|
+
.o-sklt__item--animated {
|
|
1388
|
+
background-size: 400% 100%;
|
|
1389
|
+
animation-name: skeleton-loading;
|
|
1390
|
+
animation-iteration-count: infinite;
|
|
1391
|
+
animation-duration: var(--oruga-skeleton-duration, 1.5s);
|
|
1392
|
+
}
|
|
1393
|
+
.o-sklt__item::after {
|
|
1394
|
+
content: " ";
|
|
1395
|
+
}
|
|
1396
|
+
.o-sklt--centered {
|
|
1397
|
+
align-items: center;
|
|
1398
|
+
}
|
|
1399
|
+
.o-sklt--right {
|
|
1400
|
+
align-items: flex-end;
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
/* @docs */
|
|
1404
|
+
/* @docs */
|
|
1405
|
+
.o-side__content {
|
|
1406
|
+
background-color: var(--oruga-sidebar-content-background-color, #dbdbdb);
|
|
1407
|
+
z-index: calc(var(--oruga-sidebar-zindex, 38) + 1);
|
|
1408
|
+
}
|
|
1409
|
+
.o-side__content--fixed {
|
|
1410
|
+
position: fixed;
|
|
1411
|
+
left: 0;
|
|
1412
|
+
top: 0;
|
|
1413
|
+
}
|
|
1414
|
+
.o-side__content--absolute {
|
|
1415
|
+
position: absolute;
|
|
1416
|
+
left: 0;
|
|
1417
|
+
top: 0;
|
|
1418
|
+
}
|
|
1419
|
+
.o-side__content--right {
|
|
1420
|
+
left: auto;
|
|
1421
|
+
right: 0;
|
|
1422
|
+
}
|
|
1423
|
+
.o-side__content--mini-expand:hover {
|
|
1424
|
+
transition: width;
|
|
1425
|
+
}
|
|
1426
|
+
.o-side__content--static {
|
|
1427
|
+
position: static;
|
|
1428
|
+
}
|
|
1429
|
+
.o-side__content--absolute, .o-side__content--static {
|
|
1430
|
+
transition: width 150ms ease-out;
|
|
1431
|
+
}
|
|
1432
|
+
.o-side__content--fullwidth {
|
|
1433
|
+
width: 100%;
|
|
1434
|
+
max-width: 100%;
|
|
1435
|
+
}
|
|
1436
|
+
.o-side__content--fullheight {
|
|
1437
|
+
height: 100%;
|
|
1438
|
+
max-height: 100%;
|
|
1439
|
+
overflow: hidden;
|
|
1440
|
+
overflow-y: auto;
|
|
1441
|
+
display: flex;
|
|
1442
|
+
flex-direction: column;
|
|
1443
|
+
align-content: stretch;
|
|
1444
|
+
}
|
|
1445
|
+
.o-side__overlay {
|
|
1446
|
+
bottom: 0;
|
|
1447
|
+
left: 0;
|
|
1448
|
+
right: 0;
|
|
1449
|
+
top: 0;
|
|
1450
|
+
position: fixed;
|
|
1451
|
+
background: var(--oruga-sidebar-overlay, hsla(0, 0%, 4%, 0.86));
|
|
1452
|
+
z-index: var(--oruga-sidebar-zindex, 38);
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
/* @docs */
|
|
1456
|
+
/* @docs */
|
|
1457
|
+
.o-slide {
|
|
1458
|
+
background: var(--oruga-slider-background, transparent);
|
|
1459
|
+
width: 100%;
|
|
1460
|
+
}
|
|
1461
|
+
.o-slide__thumb {
|
|
1462
|
+
border: var(--oruga-slider-thumb-border, 1px solid #b5b5b5);
|
|
1463
|
+
background: var(--oruga-slider-thumb-background, #ffffff);
|
|
1464
|
+
}
|
|
1465
|
+
.o-slide__thumb--dragging {
|
|
1466
|
+
cursor: grabbing;
|
|
1467
|
+
filter: brightness(0.8);
|
|
1468
|
+
}
|
|
1469
|
+
.o-slide__track {
|
|
1470
|
+
display: flex;
|
|
1471
|
+
align-items: center;
|
|
1472
|
+
position: relative;
|
|
1473
|
+
cursor: pointer;
|
|
1474
|
+
background: var(--oruga-slider-track-background, #dbdbdb);
|
|
1475
|
+
}
|
|
1476
|
+
.o-slide__fill {
|
|
1477
|
+
position: absolute;
|
|
1478
|
+
height: 100%;
|
|
1479
|
+
background: var(--oruga-slider-fill-background, #445e00);
|
|
1480
|
+
top: 50%;
|
|
1481
|
+
transform: translateY(-50%);
|
|
1482
|
+
}
|
|
1483
|
+
.o-slide .o-slide__track {
|
|
1484
|
+
height: var(--oruga-slider-track-height, 0.5rem);
|
|
1485
|
+
}
|
|
1486
|
+
.o-slide .o-slide__thumb {
|
|
1487
|
+
height: var(--oruga-slider-thumb-size, 1rem);
|
|
1488
|
+
width: var(--oruga-slider-thumb-size, 1rem);
|
|
1489
|
+
}
|
|
1490
|
+
.o-slide .o-slide__tick-label {
|
|
1491
|
+
position: absolute;
|
|
1492
|
+
left: 50%;
|
|
1493
|
+
transform: translateX(-50%);
|
|
1494
|
+
}
|
|
1495
|
+
.o-slide__tick {
|
|
1496
|
+
position: absolute;
|
|
1497
|
+
transform: translate(-50%, -50%);
|
|
1498
|
+
top: 50%;
|
|
1499
|
+
width: var(--oruga-slider-tick-width, 3px);
|
|
1500
|
+
background: var(--oruga-slider-tick-background, #445e00);
|
|
1501
|
+
}
|
|
1502
|
+
.o-slide__tick--hidden {
|
|
1503
|
+
background: transparent;
|
|
1504
|
+
}
|
|
1505
|
+
.o-slide__thumb-wrapper {
|
|
1506
|
+
display: inline-flex;
|
|
1507
|
+
align-items: center;
|
|
1508
|
+
position: absolute;
|
|
1509
|
+
cursor: grab;
|
|
1510
|
+
transform: translate(-50%, -50%);
|
|
1511
|
+
top: 50%;
|
|
1512
|
+
flex-direction: column;
|
|
1513
|
+
}
|
|
1514
|
+
.o-slide--disabled {
|
|
1515
|
+
cursor: not-allowed;
|
|
1516
|
+
pointer-events: none;
|
|
1517
|
+
}
|
|
1518
|
+
|
|
1519
|
+
/* @docs */
|
|
1520
|
+
/* @docs */
|
|
1521
|
+
.o-steps {
|
|
1522
|
+
display: flex;
|
|
1523
|
+
flex-wrap: wrap;
|
|
1524
|
+
margin: 0;
|
|
1525
|
+
padding: 0;
|
|
1526
|
+
}
|
|
1527
|
+
.o-steps .o-steps__title {
|
|
1528
|
+
background-color: var(--oruga-steps-details-background-color, hsl(0, 0%, 100%));
|
|
1529
|
+
text-align: center;
|
|
1530
|
+
z-index: 1;
|
|
1531
|
+
}
|
|
1532
|
+
.o-steps .o-steps__wrapper-vertical .o-steps--label-left .o-steps__divider {
|
|
1533
|
+
left: auto;
|
|
1534
|
+
}
|
|
1535
|
+
.o-steps .o-steps__wrapper-vertical.o-steps__wrapper-position-right .o-steps--label-left .o-steps__divider {
|
|
1536
|
+
left: auto;
|
|
1537
|
+
}
|
|
1538
|
+
.o-steps__nav-item {
|
|
1539
|
+
margin: 0;
|
|
1540
|
+
padding: 0;
|
|
1541
|
+
margin-top: 0;
|
|
1542
|
+
position: relative;
|
|
1543
|
+
flex-grow: 1;
|
|
1544
|
+
flex-basis: 1em;
|
|
1545
|
+
}
|
|
1546
|
+
.o-steps__divider {
|
|
1547
|
+
background: linear-gradient(to left, 50%, 50%);
|
|
1548
|
+
background-size: 200% 100%;
|
|
1549
|
+
background-position: right bottom;
|
|
1550
|
+
content: " ";
|
|
1551
|
+
display: block;
|
|
1552
|
+
position: absolute;
|
|
1553
|
+
bottom: 0;
|
|
1554
|
+
left: -50%;
|
|
1555
|
+
width: 100%;
|
|
1556
|
+
}
|
|
1557
|
+
.o-steps__content {
|
|
1558
|
+
position: relative;
|
|
1559
|
+
overflow: visible;
|
|
1560
|
+
display: flex;
|
|
1561
|
+
flex-direction: column;
|
|
1562
|
+
}
|
|
1563
|
+
.o-steps__content-transitioning {
|
|
1564
|
+
overflow: hidden;
|
|
1565
|
+
}
|
|
1566
|
+
.o-steps--animated .o-steps__divider {
|
|
1567
|
+
transition-property: background;
|
|
1568
|
+
}
|
|
1569
|
+
.o-steps__link {
|
|
1570
|
+
display: flex;
|
|
1571
|
+
align-items: center;
|
|
1572
|
+
justify-content: center;
|
|
1573
|
+
flex-direction: column;
|
|
1574
|
+
cursor: pointer;
|
|
1575
|
+
text-decoration: none;
|
|
1576
|
+
}
|
|
1577
|
+
.o-steps__link-label-right {
|
|
1578
|
+
flex-direction: row;
|
|
1579
|
+
}
|
|
1580
|
+
.o-steps__link-label-left {
|
|
1581
|
+
flex-direction: row-reverse;
|
|
1582
|
+
}
|
|
1583
|
+
.o-steps__link:hover {
|
|
1584
|
+
text-decoration: none;
|
|
1585
|
+
}
|
|
1586
|
+
.o-steps__link:not(.o-steps__link-clickable) {
|
|
1587
|
+
cursor: not-allowed;
|
|
1588
|
+
}
|
|
1589
|
+
.o-steps__marker {
|
|
1590
|
+
align-items: center;
|
|
1591
|
+
display: flex;
|
|
1592
|
+
justify-content: center;
|
|
1593
|
+
background: var(--oruga-steps-marker-background, #b5b5b5);
|
|
1594
|
+
color: var(--oruga-steps-marker-color, #ffffff);
|
|
1595
|
+
border: var(--oruga-steps-marker-border, 0.2em solid #fff);
|
|
1596
|
+
z-index: 1;
|
|
1597
|
+
overflow: hidden;
|
|
1598
|
+
}
|
|
1599
|
+
.o-steps__details {
|
|
1600
|
+
background-color: var(--oruga-steps-details-background-color, hsl(0, 0%, 100%));
|
|
1601
|
+
text-align: center;
|
|
1602
|
+
z-index: 1;
|
|
1603
|
+
}
|
|
1604
|
+
.o-steps__nav-item-active .o-steps__link {
|
|
1605
|
+
cursor: default;
|
|
1606
|
+
}
|
|
1607
|
+
.o-steps__nav-item-active .o-steps__marker {
|
|
1608
|
+
background-color: var(--oruga-steps-marker-color, #ffffff);
|
|
1609
|
+
border-color: var(--oruga-steps-active-color, #445e00);
|
|
1610
|
+
color: var(--oruga-steps-active-color, #445e00);
|
|
1611
|
+
}
|
|
1612
|
+
.o-steps__nav-item-active .o-steps__divider {
|
|
1613
|
+
background-position: left bottom;
|
|
1614
|
+
}
|
|
1615
|
+
.o-steps__nav-item-previous .o-steps__marker {
|
|
1616
|
+
color: var(--oruga-steps-marker-color, #ffffff);
|
|
1617
|
+
background-color: var(--oruga-steps-previous-color, #445e00);
|
|
1618
|
+
}
|
|
1619
|
+
.o-steps__nav-item-previous .o-steps__divider {
|
|
1620
|
+
background-position: left bottom;
|
|
1621
|
+
}
|
|
1622
|
+
.o-steps__item {
|
|
1623
|
+
flex-shrink: 0;
|
|
1624
|
+
flex-basis: auto;
|
|
1625
|
+
}
|
|
1626
|
+
.o-steps__wrapper-vertical {
|
|
1627
|
+
display: flex;
|
|
1628
|
+
flex-direction: row;
|
|
1629
|
+
flex-wrap: wrap;
|
|
1630
|
+
}
|
|
1631
|
+
.o-steps__wrapper-vertical .o-steps {
|
|
1632
|
+
height: 100%;
|
|
1633
|
+
flex-direction: column;
|
|
1634
|
+
}
|
|
1635
|
+
.o-steps__wrapper-vertical .o-steps__divider {
|
|
1636
|
+
height: 100%;
|
|
1637
|
+
top: -50%;
|
|
1638
|
+
left: calc(50% - 0.1em);
|
|
1639
|
+
}
|
|
1640
|
+
.o-steps__wrapper-vertical .o-steps__item-active .o-steps__divider,
|
|
1641
|
+
.o-steps__wrapper-vertical .o-steps__item-previous .o-steps__divider {
|
|
1642
|
+
background-position: right top;
|
|
1643
|
+
}
|
|
1644
|
+
.o-steps__wrapper-vertical .o-steps__nav-item {
|
|
1645
|
+
width: 100%;
|
|
1646
|
+
display: flex;
|
|
1647
|
+
align-items: center;
|
|
1648
|
+
justify-content: center;
|
|
1649
|
+
}
|
|
1650
|
+
.o-steps__wrapper-vertical .o-steps__content {
|
|
1651
|
+
flex-grow: 1;
|
|
1652
|
+
flex-basis: 70%;
|
|
1653
|
+
}
|
|
1654
|
+
.o-steps__wrapper-vertical .o-steps__navigation {
|
|
1655
|
+
flex-basis: 100%;
|
|
1656
|
+
}
|
|
1657
|
+
.o-steps__wrapper-vertical.o-steps__wrapper-position-right {
|
|
1658
|
+
flex-direction: row-reverse;
|
|
1659
|
+
}
|
|
1660
|
+
.o-steps--mobile .o-steps__title {
|
|
1661
|
+
display: none;
|
|
1662
|
+
padding: 0;
|
|
1663
|
+
}
|
|
1664
|
+
/* @docs */
|
|
1665
|
+
/* @docs */
|
|
1666
|
+
.o-switch {
|
|
1667
|
+
cursor: pointer;
|
|
1668
|
+
display: inline-flex;
|
|
1669
|
+
align-items: center;
|
|
1670
|
+
position: relative;
|
|
1671
|
+
-webkit-touch-callout: none;
|
|
1672
|
+
-webkit-user-select: none;
|
|
1673
|
+
-moz-user-select: none;
|
|
1674
|
+
-ms-user-select: none;
|
|
1675
|
+
user-select: none;
|
|
1676
|
+
}
|
|
1677
|
+
.o-switch--left {
|
|
1678
|
+
flex-direction: row-reverse;
|
|
1679
|
+
}
|
|
1680
|
+
.o-switch--left .o-switch__label {
|
|
1681
|
+
margin-left: 0;
|
|
1682
|
+
}
|
|
1683
|
+
.o-switch__check-switch {
|
|
1684
|
+
content: "";
|
|
1685
|
+
display: block;
|
|
1686
|
+
height: calc((var(--oruga-switch-width, 2.75em) - var(--oruga-switch-padding, 0.2em) * 2) * 0.5);
|
|
1687
|
+
width: calc((var(--oruga-switch-width, 2.75em) - var(--oruga-switch-padding, 0.2em) * 2) * 0.5);
|
|
1688
|
+
background: var(--oruga-switch-action-background, #f5f5f5);
|
|
1689
|
+
transition-property: transform;
|
|
1690
|
+
will-change: transform;
|
|
1691
|
+
transform-origin: left;
|
|
1692
|
+
}
|
|
1693
|
+
.o-switch__check {
|
|
1694
|
+
display: flex;
|
|
1695
|
+
align-items: center;
|
|
1696
|
+
flex-shrink: 0;
|
|
1697
|
+
width: var(--oruga-switch-width, 2.75em);
|
|
1698
|
+
height: calc(var(--oruga-switch-width, 2.75em) * 0.5 + var(--oruga-switch-padding, 0.2em));
|
|
1699
|
+
padding: var(--oruga-switch-padding, 0.2em);
|
|
1700
|
+
background: var(--oruga-switch-background, #b5b5b5);
|
|
1701
|
+
transition-property: background;
|
|
1702
|
+
}
|
|
1703
|
+
.o-switch__check--checked {
|
|
1704
|
+
background: var(--oruga-switch-active-background-color, #445e00);
|
|
1705
|
+
}
|
|
1706
|
+
.o-switch__check--checked .o-switch__check-switch {
|
|
1707
|
+
transform: translate3d(100%, 0, 0);
|
|
1708
|
+
}
|
|
1709
|
+
.o-switch__input {
|
|
1710
|
+
position: absolute;
|
|
1711
|
+
left: 0;
|
|
1712
|
+
opacity: 0;
|
|
1713
|
+
z-index: -1;
|
|
1714
|
+
}
|
|
1715
|
+
.o-switch--rounded {
|
|
1716
|
+
border-radius: var(--oruga-switch-rounded-border-radius, 9999px);
|
|
1717
|
+
}
|
|
1718
|
+
.o-switch--disabled {
|
|
1719
|
+
opacity: var(--oruga-switch-disabled-opacity, 0.5);
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
/* @docs */
|
|
1723
|
+
/* @docs */
|
|
1724
|
+
.o-table {
|
|
1725
|
+
display: table;
|
|
1726
|
+
width: 100%;
|
|
1727
|
+
border-collapse: separate;
|
|
1728
|
+
border-spacing: 0;
|
|
1729
|
+
}
|
|
1730
|
+
.o-table__root {
|
|
1731
|
+
position: relative;
|
|
1732
|
+
}
|
|
1733
|
+
.o-table__wrapper {
|
|
1734
|
+
transition: opacity 300ms ease-out;
|
|
1735
|
+
position: relative;
|
|
1736
|
+
}
|
|
1737
|
+
.o-table__wrapper--sticky-header {
|
|
1738
|
+
overflow-y: auto;
|
|
1739
|
+
}
|
|
1740
|
+
.o-table__wrapper--sticky-header th {
|
|
1741
|
+
position: -webkit-sticky;
|
|
1742
|
+
position: sticky;
|
|
1743
|
+
left: 0;
|
|
1744
|
+
top: 0;
|
|
1745
|
+
}
|
|
1746
|
+
.o-table__wrapper--scrollable {
|
|
1747
|
+
-webkit-overflow-scrolling: touch;
|
|
1748
|
+
overflow-x: auto;
|
|
1749
|
+
max-width: 100%;
|
|
1750
|
+
}
|
|
1751
|
+
.o-table__wrapper--mobile {
|
|
1752
|
+
overflow-x: auto;
|
|
1753
|
+
}
|
|
1754
|
+
.o-table__wrapper--mobile .o-table__mobile-sort {
|
|
1755
|
+
display: block;
|
|
1756
|
+
}
|
|
1757
|
+
.o-table__wrapper--mobile .o-table {
|
|
1758
|
+
background-color: transparent;
|
|
1759
|
+
}
|
|
1760
|
+
.o-table__wrapper--mobile thead tr {
|
|
1761
|
+
box-shadow: none;
|
|
1762
|
+
border-width: 0;
|
|
1763
|
+
}
|
|
1764
|
+
.o-table__wrapper--mobile thead tr th {
|
|
1765
|
+
display: none;
|
|
1766
|
+
}
|
|
1767
|
+
.o-table__wrapper--mobile thead tr .o-table-th-checkbox {
|
|
1768
|
+
display: block;
|
|
1769
|
+
width: 100%;
|
|
1770
|
+
text-align: right;
|
|
1771
|
+
border: 0;
|
|
1772
|
+
}
|
|
1773
|
+
.o-table__wrapper--mobile tfoot th {
|
|
1774
|
+
border: 0;
|
|
1775
|
+
display: inherit;
|
|
1776
|
+
}
|
|
1777
|
+
.o-table__wrapper--mobile tr {
|
|
1778
|
+
max-width: 100%;
|
|
1779
|
+
position: relative;
|
|
1780
|
+
display: block;
|
|
1781
|
+
}
|
|
1782
|
+
.o-table__wrapper--mobile tr td {
|
|
1783
|
+
border: 0;
|
|
1784
|
+
display: inherit;
|
|
1785
|
+
}
|
|
1786
|
+
.o-table__wrapper--mobile tr td:last-child {
|
|
1787
|
+
border-bottom: 0;
|
|
1788
|
+
}
|
|
1789
|
+
.o-table__wrapper--mobile tr:not(.o-table__tr--selected) {
|
|
1790
|
+
background: inherit;
|
|
1791
|
+
background: #fff;
|
|
1792
|
+
}
|
|
1793
|
+
.o-table__wrapper--mobile tr:not(.o-table__tr--selected):hover {
|
|
1794
|
+
background-color: inherit;
|
|
1795
|
+
background-color: #fff;
|
|
1796
|
+
}
|
|
1797
|
+
.o-table__wrapper--mobile tr:not(.o-table--detailed):not(.o-table--empty):not(.o-table__footer) td {
|
|
1798
|
+
display: flex;
|
|
1799
|
+
width: auto;
|
|
1800
|
+
justify-content: space-between;
|
|
1801
|
+
text-align: right;
|
|
1802
|
+
}
|
|
1803
|
+
.o-table__wrapper--mobile tr:not(.o-table--detailed):not(.o-table--empty):not(.o-table__footer) td:before {
|
|
1804
|
+
content: attr(data-label);
|
|
1805
|
+
}
|
|
1806
|
+
.o-table__mobile-sort {
|
|
1807
|
+
display: none;
|
|
1808
|
+
}
|
|
1809
|
+
.o-table__th {
|
|
1810
|
+
vertical-align: top;
|
|
1811
|
+
text-align: left;
|
|
1812
|
+
position: relative;
|
|
1813
|
+
}
|
|
1814
|
+
.o-table__th--centered {
|
|
1815
|
+
text-align: center;
|
|
1816
|
+
}
|
|
1817
|
+
.o-table__th--right {
|
|
1818
|
+
text-align: right;
|
|
1819
|
+
}
|
|
1820
|
+
.o-table__th__sort-icon {
|
|
1821
|
+
position: absolute;
|
|
1822
|
+
right: 0;
|
|
1823
|
+
}
|
|
1824
|
+
.o-table__th--sortable {
|
|
1825
|
+
cursor: pointer;
|
|
1826
|
+
}
|
|
1827
|
+
.o-table__th--sticky {
|
|
1828
|
+
position: -webkit-sticky;
|
|
1829
|
+
position: sticky;
|
|
1830
|
+
left: 0;
|
|
1831
|
+
top: 0;
|
|
1832
|
+
}
|
|
1833
|
+
.o-table__th--unselectable {
|
|
1834
|
+
-webkit-touch-callout: none;
|
|
1835
|
+
-webkit-user-select: none;
|
|
1836
|
+
-moz-user-select: none;
|
|
1837
|
+
-ms-user-select: none;
|
|
1838
|
+
user-select: none;
|
|
1839
|
+
}
|
|
1840
|
+
.o-table__td {
|
|
1841
|
+
vertical-align: top;
|
|
1842
|
+
text-align: left;
|
|
1843
|
+
}
|
|
1844
|
+
.o-table__td--sticky {
|
|
1845
|
+
position: -webkit-sticky;
|
|
1846
|
+
position: sticky;
|
|
1847
|
+
left: 0;
|
|
1848
|
+
}
|
|
1849
|
+
.o-table__td--right {
|
|
1850
|
+
text-align: right;
|
|
1851
|
+
}
|
|
1852
|
+
.o-table__td--centered {
|
|
1853
|
+
text-align: center;
|
|
1854
|
+
}
|
|
1855
|
+
.o-table__td-chevron {
|
|
1856
|
+
vertical-align: middle;
|
|
1857
|
+
}
|
|
1858
|
+
.o-table__tr--selected {
|
|
1859
|
+
background-color: #445e00;
|
|
1860
|
+
color: #ffffff;
|
|
1861
|
+
}
|
|
1862
|
+
.o-table__pagination {
|
|
1863
|
+
align-items: center;
|
|
1864
|
+
justify-content: space-between;
|
|
1865
|
+
display: flex;
|
|
1866
|
+
}
|
|
1867
|
+
.o-table__pagination > div:first-child {
|
|
1868
|
+
align-items: center;
|
|
1869
|
+
justify-content: flex-start;
|
|
1870
|
+
}
|
|
1871
|
+
.o-table__pagination > div:last-child {
|
|
1872
|
+
align-items: center;
|
|
1873
|
+
justify-content: flex-end;
|
|
1874
|
+
}
|
|
1875
|
+
.o-table__pagination > div:last-child > div {
|
|
1876
|
+
align-items: center;
|
|
1877
|
+
display: flex;
|
|
1878
|
+
flex-basis: auto;
|
|
1879
|
+
flex-grow: 0;
|
|
1880
|
+
flex-shrink: 0;
|
|
1881
|
+
justify-content: center;
|
|
1882
|
+
}
|
|
1883
|
+
.o-table__pagination > div {
|
|
1884
|
+
flex-basis: auto;
|
|
1885
|
+
flex-grow: 0;
|
|
1886
|
+
flex-shrink: 0;
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1889
|
+
/* @docs */
|
|
1890
|
+
/* @docs */
|
|
1891
|
+
.o-tabs--fullwidth {
|
|
1892
|
+
width: 100%;
|
|
1893
|
+
}
|
|
1894
|
+
.o-tabs--fullwidth .o-tabs__nav-item-wrapper {
|
|
1895
|
+
flex-grow: 1;
|
|
1896
|
+
flex-shrink: 0;
|
|
1897
|
+
}
|
|
1898
|
+
.o-tabs--fullwidth .o-tabs__nav-item-default,
|
|
1899
|
+
.o-tabs--fullwidth .o-tabs__nav-item-boxed,
|
|
1900
|
+
.o-tabs--fullwidth .o-tabs__nav-item-toggle {
|
|
1901
|
+
height: 100%;
|
|
1902
|
+
}
|
|
1903
|
+
.o-tabs--vertical {
|
|
1904
|
+
display: flex;
|
|
1905
|
+
flex-direction: row;
|
|
1906
|
+
}
|
|
1907
|
+
.o-tabs--vertical .o-tabs__nav {
|
|
1908
|
+
flex-direction: column;
|
|
1909
|
+
align-items: stretch;
|
|
1910
|
+
flex-grow: 0;
|
|
1911
|
+
border-bottom: none;
|
|
1912
|
+
}
|
|
1913
|
+
.o-tabs--vertical .o-tabs__nav-item-boxed {
|
|
1914
|
+
border-bottom-color: transparent;
|
|
1915
|
+
}
|
|
1916
|
+
.o-tabs--vertical .o-tabs__nav-item-boxed--active {
|
|
1917
|
+
border-right-color: transparent;
|
|
1918
|
+
}
|
|
1919
|
+
.o-tabs--right {
|
|
1920
|
+
flex-direction: row-reverse;
|
|
1921
|
+
}
|
|
1922
|
+
.o-tabs--right .o-tabs__nav-item-boxed {
|
|
1923
|
+
border-bottom-color: transparent;
|
|
1924
|
+
border-right-color: transparent;
|
|
1925
|
+
}
|
|
1926
|
+
.o-tabs--right .o-tabs__nav-item-boxed--active {
|
|
1927
|
+
border-left-color: transparent;
|
|
1928
|
+
}
|
|
1929
|
+
.o-tabs__nav {
|
|
1930
|
+
-webkit-touch-callout: none;
|
|
1931
|
+
-webkit-user-select: none;
|
|
1932
|
+
-moz-user-select: none;
|
|
1933
|
+
-ms-user-select: none;
|
|
1934
|
+
user-select: none;
|
|
1935
|
+
margin: 0;
|
|
1936
|
+
padding: 0;
|
|
1937
|
+
align-items: center;
|
|
1938
|
+
display: flex;
|
|
1939
|
+
flex-grow: 1;
|
|
1940
|
+
flex-shrink: 0;
|
|
1941
|
+
justify-content: flex-start;
|
|
1942
|
+
overflow-x: auto;
|
|
1943
|
+
}
|
|
1944
|
+
.o-tabs__nav--centered {
|
|
1945
|
+
justify-content: center;
|
|
1946
|
+
}
|
|
1947
|
+
.o-tabs__nav--right {
|
|
1948
|
+
justify-content: flex-end;
|
|
1949
|
+
}
|
|
1950
|
+
.o-tabs__nav-item-default {
|
|
1951
|
+
-moz-appearance: none;
|
|
1952
|
+
-webkit-appearance: none;
|
|
1953
|
+
width: 100%;
|
|
1954
|
+
margin: 0;
|
|
1955
|
+
padding: 0;
|
|
1956
|
+
border: 1px solid transparent;
|
|
1957
|
+
background-color: transparent;
|
|
1958
|
+
align-items: center;
|
|
1959
|
+
line-height: 1.5;
|
|
1960
|
+
color: var(--oruga-tabs-link-color, hsl(0, 0%, 29%));
|
|
1961
|
+
display: flex;
|
|
1962
|
+
justify-content: center;
|
|
1963
|
+
margin-bottom: -1px;
|
|
1964
|
+
vertical-align: top;
|
|
1965
|
+
cursor: pointer;
|
|
1966
|
+
text-decoration: none;
|
|
1967
|
+
}
|
|
1968
|
+
.o-tabs__nav-item-default--active {
|
|
1969
|
+
border-bottom-color: var(--oruga-tabs-link-active-border-bottom-color, #445e00);
|
|
1970
|
+
color: var(--oruga-tabs-link-active-color, #445e00);
|
|
1971
|
+
}
|
|
1972
|
+
.o-tabs__nav-item-default--disabled {
|
|
1973
|
+
pointer-events: none;
|
|
1974
|
+
cursor: not-allowed;
|
|
1975
|
+
opacity: var(--oruga-tabs-disabled-opacity, 0.5);
|
|
1976
|
+
}
|
|
1977
|
+
.o-tabs__nav-item-boxed {
|
|
1978
|
+
-moz-appearance: none;
|
|
1979
|
+
-webkit-appearance: none;
|
|
1980
|
+
width: 100%;
|
|
1981
|
+
margin: 0;
|
|
1982
|
+
padding: 0;
|
|
1983
|
+
border: 1px solid transparent;
|
|
1984
|
+
background-color: transparent;
|
|
1985
|
+
align-items: center;
|
|
1986
|
+
line-height: 1.5;
|
|
1987
|
+
color: var(--oruga-tabs-link-color, hsl(0, 0%, 29%));
|
|
1988
|
+
display: flex;
|
|
1989
|
+
justify-content: center;
|
|
1990
|
+
margin-bottom: -1px;
|
|
1991
|
+
vertical-align: top;
|
|
1992
|
+
cursor: pointer;
|
|
1993
|
+
text-decoration: none;
|
|
1994
|
+
border-bottom-color: transparent;
|
|
1995
|
+
}
|
|
1996
|
+
.o-tabs__nav-item-boxed--active {
|
|
1997
|
+
border-bottom-color: var(--oruga-tabs-link-active-border-bottom-color, #445e00);
|
|
1998
|
+
color: var(--oruga-tabs-link-active-color, #445e00);
|
|
1999
|
+
}
|
|
2000
|
+
.o-tabs__nav-item-boxed--disabled {
|
|
2001
|
+
pointer-events: none;
|
|
2002
|
+
cursor: not-allowed;
|
|
2003
|
+
opacity: var(--oruga-tabs-disabled-opacity, 0.5);
|
|
2004
|
+
}
|
|
2005
|
+
.o-tabs__nav-item-toggle {
|
|
2006
|
+
-moz-appearance: none;
|
|
2007
|
+
-webkit-appearance: none;
|
|
2008
|
+
width: 100%;
|
|
2009
|
+
margin: 0;
|
|
2010
|
+
padding: 0;
|
|
2011
|
+
border: 1px solid transparent;
|
|
2012
|
+
background-color: transparent;
|
|
2013
|
+
align-items: center;
|
|
2014
|
+
line-height: 1.5;
|
|
2015
|
+
color: var(--oruga-tabs-link-color, hsl(0, 0%, 29%));
|
|
2016
|
+
display: flex;
|
|
2017
|
+
justify-content: center;
|
|
2018
|
+
margin-bottom: -1px;
|
|
2019
|
+
vertical-align: top;
|
|
2020
|
+
cursor: pointer;
|
|
2021
|
+
text-decoration: none;
|
|
2022
|
+
margin-bottom: 0;
|
|
2023
|
+
position: relative;
|
|
2024
|
+
}
|
|
2025
|
+
.o-tabs__nav-item-toggle--disabled {
|
|
2026
|
+
pointer-events: none;
|
|
2027
|
+
cursor: not-allowed;
|
|
2028
|
+
opacity: var(--oruga-tabs-disabled-opacity, 0.5);
|
|
2029
|
+
}
|
|
2030
|
+
.o-tabs__content {
|
|
2031
|
+
position: relative;
|
|
2032
|
+
overflow: visible;
|
|
2033
|
+
display: flex;
|
|
2034
|
+
flex-direction: column;
|
|
2035
|
+
flex-grow: 1;
|
|
2036
|
+
}
|
|
2037
|
+
.o-tabs__content--transitioning {
|
|
2038
|
+
overflow: hidden;
|
|
2039
|
+
}
|
|
2040
|
+
/* @docs */
|
|
2041
|
+
/* @docs */
|
|
2042
|
+
.o-tpck__dropdown {
|
|
2043
|
+
width: 100%;
|
|
2044
|
+
}
|
|
2045
|
+
.o-tpck__box {
|
|
2046
|
+
display: flex;
|
|
2047
|
+
justify-content: center;
|
|
2048
|
+
align-items: center;
|
|
2049
|
+
}
|
|
2050
|
+
.o-tpck__select {
|
|
2051
|
+
-moz-appearance: none;
|
|
2052
|
+
-webkit-appearance: none;
|
|
2053
|
+
display: inline-block;
|
|
2054
|
+
position: relative;
|
|
2055
|
+
vertical-align: top;
|
|
2056
|
+
cursor: pointer;
|
|
2057
|
+
justify-content: flex-start;
|
|
2058
|
+
align-items: center;
|
|
2059
|
+
border: 0;
|
|
2060
|
+
font-size: inherit;
|
|
2061
|
+
}
|
|
2062
|
+
.o-tpck__select-placeholder {
|
|
2063
|
+
opacity: var(--oruga-timepicker-select-placeholder-opacity, 0.5);
|
|
2064
|
+
}
|
|
2065
|
+
/* @docs */
|
|
2066
|
+
/* @docs */
|
|
2067
|
+
.o-tip {
|
|
2068
|
+
position: relative;
|
|
2069
|
+
display: inline-flex;
|
|
2070
|
+
}
|
|
2071
|
+
.o-tip__arrow--top {
|
|
2072
|
+
top: 100%;
|
|
2073
|
+
right: auto;
|
|
2074
|
+
bottom: auto;
|
|
2075
|
+
left: 50%;
|
|
2076
|
+
transform: translateX(-50%);
|
|
2077
|
+
border-top-style: solid;
|
|
2078
|
+
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2079
|
+
border-right-style: solid;
|
|
2080
|
+
border-right-color: transparent;
|
|
2081
|
+
border-left-style: solid;
|
|
2082
|
+
border-left-color: transparent;
|
|
2083
|
+
border-right-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2084
|
+
border-left-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2085
|
+
}
|
|
2086
|
+
.o-tip__content--top {
|
|
2087
|
+
top: auto;
|
|
2088
|
+
right: auto;
|
|
2089
|
+
bottom: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2090
|
+
left: 50%;
|
|
2091
|
+
transform: translateX(-50%);
|
|
2092
|
+
}
|
|
2093
|
+
.o-tip__arrow--right {
|
|
2094
|
+
top: 50%;
|
|
2095
|
+
right: 100%;
|
|
2096
|
+
bottom: auto;
|
|
2097
|
+
left: auto;
|
|
2098
|
+
transform: translateY(-50%);
|
|
2099
|
+
border-right-style: solid;
|
|
2100
|
+
border-right-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2101
|
+
border-top-style: solid;
|
|
2102
|
+
border-top-color: transparent;
|
|
2103
|
+
border-bottom-style: solid;
|
|
2104
|
+
border-bottom-color: transparent;
|
|
2105
|
+
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2106
|
+
border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2107
|
+
}
|
|
2108
|
+
.o-tip__content--right {
|
|
2109
|
+
top: 50%;
|
|
2110
|
+
right: auto;
|
|
2111
|
+
bottom: auto;
|
|
2112
|
+
left: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2113
|
+
transform: translateY(-50%);
|
|
2114
|
+
}
|
|
2115
|
+
.o-tip__arrow--bottom {
|
|
2116
|
+
top: auto;
|
|
2117
|
+
right: auto;
|
|
2118
|
+
bottom: 100%;
|
|
2119
|
+
left: 50%;
|
|
2120
|
+
transform: translateX(-50%);
|
|
2121
|
+
border-bottom-style: solid;
|
|
2122
|
+
border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2123
|
+
border-right-style: solid;
|
|
2124
|
+
border-right-color: transparent;
|
|
2125
|
+
border-left-style: solid;
|
|
2126
|
+
border-left-color: transparent;
|
|
2127
|
+
border-right-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2128
|
+
border-left-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2129
|
+
}
|
|
2130
|
+
.o-tip__content--bottom {
|
|
2131
|
+
top: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2132
|
+
right: auto;
|
|
2133
|
+
bottom: auto;
|
|
2134
|
+
left: 50%;
|
|
2135
|
+
transform: translateX(-50%);
|
|
2136
|
+
}
|
|
2137
|
+
.o-tip__arrow--left {
|
|
2138
|
+
top: 50%;
|
|
2139
|
+
right: auto;
|
|
2140
|
+
bottom: auto;
|
|
2141
|
+
left: 100%;
|
|
2142
|
+
transform: translateY(-50%);
|
|
2143
|
+
border-left-style: solid;
|
|
2144
|
+
border-left-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2145
|
+
border-top-style: solid;
|
|
2146
|
+
border-top-color: transparent;
|
|
2147
|
+
border-bottom-style: solid;
|
|
2148
|
+
border-bottom-color: transparent;
|
|
2149
|
+
border-top-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2150
|
+
border-bottom-width: var(--oruga-tooltip-arrow-size, 5px);
|
|
2151
|
+
}
|
|
2152
|
+
.o-tip__content--left {
|
|
2153
|
+
top: 50%;
|
|
2154
|
+
right: calc((var(--oruga-tooltip-arrow-size, 5px) + var(--oruga-tooltip-arrow-margin, 2px)) + 100%);
|
|
2155
|
+
bottom: auto;
|
|
2156
|
+
left: auto;
|
|
2157
|
+
transform: translateY(-50%);
|
|
2158
|
+
}
|
|
2159
|
+
.o-tip__arrow {
|
|
2160
|
+
position: absolute;
|
|
2161
|
+
content: "";
|
|
2162
|
+
pointer-events: none;
|
|
2163
|
+
z-index: var(--oruga-tooltip-content-zindex, 38);
|
|
2164
|
+
color: var(--oruga-tooltip-background-color, #445e00);
|
|
2165
|
+
}
|
|
2166
|
+
.o-tip__content {
|
|
2167
|
+
position: absolute;
|
|
2168
|
+
white-space: nowrap;
|
|
2169
|
+
z-index: var(--oruga-tooltip-content-zindex, 38);
|
|
2170
|
+
background-color: var(--oruga-tooltip-background-color, #445e00);
|
|
2171
|
+
}
|
|
2172
|
+
.o-tip__content--always {
|
|
2173
|
+
opacity: 1;
|
|
2174
|
+
visibility: visible;
|
|
2175
|
+
}
|
|
2176
|
+
.o-tip__content--multiline {
|
|
2177
|
+
text-align: center;
|
|
2178
|
+
white-space: normal;
|
|
2179
|
+
}
|
|
2180
|
+
.o-tip__trigger {
|
|
2181
|
+
width: 100%;
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
/* @docs */
|
|
2185
|
+
/* @docs */
|
|
2186
|
+
.o-upl {
|
|
2187
|
+
position: relative;
|
|
2188
|
+
display: inline-flex;
|
|
2189
|
+
}
|
|
2190
|
+
.o-upl--disabled {
|
|
2191
|
+
cursor: not-allowed;
|
|
2192
|
+
}
|
|
2193
|
+
.o-upl--expanded {
|
|
2194
|
+
width: 100%;
|
|
2195
|
+
}
|
|
2196
|
+
.o-upl__draggable {
|
|
2197
|
+
cursor: pointer;
|
|
2198
|
+
width: 100%;
|
|
2199
|
+
}
|
|
2200
|
+
.o-upl input[type=file] {
|
|
2201
|
+
position: absolute;
|
|
2202
|
+
top: 0;
|
|
2203
|
+
left: 0;
|
|
2204
|
+
width: 100%;
|
|
2205
|
+
height: 100%;
|
|
2206
|
+
opacity: 0;
|
|
2207
|
+
cursor: pointer;
|
|
2208
|
+
z-index: -1;
|
|
2209
|
+
}
|