wunderbaum 0.3.5 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +1,11 @@
1
+ @charset "UTF-8";
1
2
  /*!
2
3
  * Wunderbaum style sheet (generated from wunderbaum.scss)
3
4
  * Copyright (c) 2021-2023, Martin Wendt. Released under the MIT license.
4
- * v0.3.5, Mon, 19 Jun 2023 06:20:59 GMT (https://github.com/mar10/wunderbaum)
5
+ * @VERSION, @DATE (https://github.com/mar10/wunderbaum)
5
6
  */
6
- :root {
7
+ :root,
8
+ :host {
7
9
  --wb-font-stack: Helvetica, sans-serif;
8
10
  --wb-error-color: #b5373b;
9
11
  --wb-node-text-color: #56534c;
@@ -45,10 +47,12 @@
45
47
  --wb-icon-width: 16px;
46
48
  --wb-icon-padding-y: 2px;
47
49
  --wb-icon-padding-x: 2px;
48
- --wb-header-height: 22px; }
50
+ --wb-header-height: 22px;
51
+ }
49
52
 
50
53
  div.wunderbaum * {
51
- box-sizing: border-box; }
54
+ box-sizing: border-box;
55
+ }
52
56
 
53
57
  div.wunderbaum {
54
58
  height: 100%;
@@ -73,336 +77,423 @@ div.wunderbaum {
73
77
  /* Colorize indentation levels. */
74
78
  /* Fade out expanders, when container is not hovered or active */
75
79
  /* Skeleton */
76
- /* Auto-hide checkboxes unless selected or hovered */ }
77
- div.wunderbaum:focus, div.wunderbaum:focus-within {
78
- border-color: var(--wb-focus-border-color); }
79
- div.wunderbaum.wb-disabled {
80
- opacity: 0.7;
81
- pointer-events: none; }
82
- div.wunderbaum div.wb-list-container {
83
- position: relative;
84
- min-height: 4px; }
85
- div.wunderbaum div.wb-header {
86
- position: sticky;
87
- top: 0;
88
- z-index: 2; }
89
- div.wunderbaum div.wb-header,
90
- div.wunderbaum div.wb-list-container {
91
- overflow: unset; }
92
- div.wunderbaum div.wb-row {
93
- position: absolute;
94
- width: 100%;
95
- height: var(--wb-row-outer-height);
96
- line-height: var(--wb-row-outer-height);
97
- border: 1px solid transparent; }
98
- div.wunderbaum.wb-fixed-col {
99
- /* Sticky firdt column (header and nodes) */ }
100
- div.wunderbaum.wb-fixed-col span.wb-col:first-of-type {
101
- position: sticky;
102
- left: 0;
103
- z-index: 1;
104
- background-color: var(--wb-background-color); }
105
- div.wunderbaum.wb-fixed-col div.wb-header span.wb-col:first-of-type {
106
- background-color: var(--wb-header-color); }
107
- div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type,
108
- div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type {
109
- background-color: var(--wb-active-color); }
110
- div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row.wb-active:hover span.wb-col:first-of-type,
111
- div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row.wb-selected:hover span.wb-col:first-of-type {
112
- background-color: var(--wb-active-hover-color); }
113
- div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row:hover span.wb-col:first-of-type {
114
- background-color: var(--wb-hover-color); }
115
- div.wunderbaum.wb-fixed-col:not(:focus-within) div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type,
116
- div.wunderbaum.wb-fixed-col:not(:focus-within) div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col:not(:focus) div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type,
117
- div.wunderbaum.wb-fixed-col:not(:focus) div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type {
118
- background-color: var(--wb-active-color-grayscale);
119
- border-color: var(--wb-active-border-color-grayscale); }
120
- div.wunderbaum.wb-fixed-col:not(:focus-within) div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type:hover span.wb-col:first-of-type,
121
- div.wunderbaum.wb-fixed-col:not(:focus-within) div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type:hover span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col:not(:focus) div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type:hover span.wb-col:first-of-type,
122
- div.wunderbaum.wb-fixed-col:not(:focus) div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type:hover span.wb-col:first-of-type {
123
- background-color: var(--wb-active-hover-color-grayscale); }
124
- div.wunderbaum:not(:focus-within) div.wb-node-list div.wb-row.wb-active, div.wunderbaum:not(:focus-within) div.wb-node-list div.wb-row.wb-selected, div.wunderbaum:not(:focus) div.wb-node-list div.wb-row.wb-active, div.wunderbaum:not(:focus) div.wb-node-list div.wb-row.wb-selected {
125
- background-color: var(--wb-active-color-grayscale);
126
- border-color: var(--wb-active-border-color-grayscale); }
127
- div.wunderbaum:not(:focus-within) div.wb-node-list div.wb-row.wb-active:hover, div.wunderbaum:not(:focus-within) div.wb-node-list div.wb-row.wb-selected:hover, div.wunderbaum:not(:focus) div.wb-node-list div.wb-row.wb-active:hover, div.wunderbaum:not(:focus) div.wb-node-list div.wb-row.wb-selected:hover {
128
- background-color: var(--wb-active-hover-color-grayscale); }
129
- div.wunderbaum.wb-alternate div.wb-node-list div.wb-row:nth-of-type(even):not(.wb-active):not(.wb-selected) {
130
- background-color: var(--wb-alternate-row-color); }
131
- div.wunderbaum.wb-alternate div.wb-node-list div.wb-row:nth-of-type(even):not(.wb-active):not(.wb-selected):hover {
132
- background-color: var(--wb-alternate-row-color-hover); }
133
- div.wunderbaum div.wb-node-list div.wb-row:hover {
134
- background-color: var(--wb-hover-color); }
135
- div.wunderbaum div.wb-node-list div.wb-row.wb-active, div.wunderbaum div.wb-node-list div.wb-row.wb-selected {
136
- background-color: var(--wb-active-color); }
137
- div.wunderbaum div.wb-node-list div.wb-row.wb-active:hover, div.wunderbaum div.wb-node-list div.wb-row.wb-selected:hover {
138
- background-color: var(--wb-active-hover-color); }
139
- div.wunderbaum div.wb-node-list div.wb-row.wb-focus:not(.wb-active) {
140
- border-style: dotted;
141
- border-color: var(--wb-active-border-color); }
142
- div.wunderbaum div.wb-node-list div.wb-row.wb-active {
143
- border-style: solid;
144
- border-color: var(--wb-active-border-color); }
145
- div.wunderbaum div.wb-node-list div.wb-row.wb-active:hover {
146
- border-color: var(--wb-active-hover-border-color); }
147
- div.wunderbaum div.wb-node-list div.wb-row.wb-loading {
148
- font-style: italic; }
149
- div.wunderbaum div.wb-node-list div.wb-row.wb-busy,
150
- div.wunderbaum div.wb-node-list div.wb-row i.wb-busy,
151
- div.wunderbaum div.wb-node-list div.wb-row .wb-col.wb-busy {
152
- font-style: italic;
153
- background: repeating-linear-gradient(45deg, transparent, transparent 3.88px, #dedede 3.88px, #dedede 7.78px);
154
- animation: wb-busy-animation 2s linear infinite; }
155
- div.wunderbaum div.wb-node-list div.wb-row.wb-error, div.wunderbaum div.wb-node-list div.wb-row.wb-status-error {
156
- color: var(--wb-error-color); }
157
- div.wunderbaum div.wb-header {
158
- position: sticky;
159
- height: var(--wb-header-height);
160
- border-bottom: 1px solid var(--wb-border-color);
161
- padding: 0;
162
- background-color: var(--wb-header-color); }
163
- div.wunderbaum div.wb-header span.wb-col {
164
- font-weight: bold;
165
- overflow: visible; }
166
- div.wunderbaum div.wb-header span.wb-col-title {
167
- width: 100%;
168
- overflow: hidden;
169
- white-space: nowrap;
170
- text-overflow: ellipsis; }
171
- div.wunderbaum div.wb-header span.wb-col-resizer {
172
- position: absolute;
173
- top: 0;
174
- right: -1px;
175
- width: 3px;
176
- border: none;
177
- border-right: 2px solid var(--wb-border-color);
178
- height: 100%;
179
- cursor: col-resize; }
180
- div.wunderbaum span.wb-col {
181
- position: absolute;
182
- display: inline-block;
183
- overflow: hidden;
184
- height: var(--wb-row-inner-height);
185
- line-height: var(--wb-row-inner-height);
186
- padding: 0 2px;
187
- border-right: 1px solid #dedede;
188
- white-space: nowrap; }
189
- div.wunderbaum span.wb-col:last-of-type {
190
- border-right: none; }
191
- div.wunderbaum span.wb-node {
192
- user-select: none;
193
- /* Fix Bootstrap Icon alignment */ }
194
- div.wunderbaum span.wb-node i.wb-checkbox,
195
- div.wunderbaum span.wb-node i.wb-expander,
196
- div.wunderbaum span.wb-node i.wb-icon,
197
- div.wunderbaum span.wb-node i.wb-indent {
198
- height: var(--wb-icon-outer-height);
199
- width: var(--wb-icon-outer-width);
200
- padding: var(--wb-icon-padding) var(--wb-icon-padding-x);
201
- display: inline-block; }
202
- div.wunderbaum span.wb-node i.bi::before {
203
- vertical-align: baseline; }
204
- div.wunderbaum span.wb-node img.wb-icon {
205
- width: var(--wb-icon-width);
206
- height: var(--wb-icon-height);
207
- padding: var(--wb-icon-padding-y) var(--wb-icon-padding-x); }
208
- div.wunderbaum span.wb-node i.wb-indent::before {
209
- content: "\00a0"; }
210
- div.wunderbaum span.wb-node i.wb-expander.wb-spin,
211
- div.wunderbaum span.wb-node i.wb-icon.wb-spin {
212
- height: unset;
213
- width: unset;
214
- padding: 0 3px;
215
- animation: wb-spin-animation 2s linear infinite; }
216
- div.wunderbaum span.wb-node span.wb-title {
217
- min-width: 1em;
218
- vertical-align: top;
219
- overflow-x: hidden;
220
- display: inline-block;
221
- white-space: nowrap;
222
- text-overflow: ellipsis; }
223
- div.wunderbaum.wb-grid div.wb-header div.wb-row span.wb-col:hover {
224
- background-color: var(--wb-active-header-column-color); }
225
- div.wunderbaum.wb-grid.wb-cell-mode div.wb-header div.wb-row span.wb-col.wb-active {
226
- background-color: var(--wb-active-hover-color); }
227
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row {
228
- border-bottom-color: var(--wb-grid-color); }
229
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row:hover:not(.wb-active):not(.wb-selected) {
230
- background-color: var(--wb-hover-color); }
231
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row.wb-active {
232
- border-bottom-color: var(--wb-active-border-color); }
233
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col {
234
- border-right: 1px solid #dedede; }
235
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col input.wb-input-edit,
236
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="color"],
237
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="date"],
238
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="datetime"],
239
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="datetime-local"],
240
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="email"],
241
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="month"],
242
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="number"],
243
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="password"],
244
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="search"],
245
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="tel"],
246
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="text"],
247
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="time"],
248
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="url"],
249
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type="week"],
250
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > select {
251
- width: 100%;
252
- max-height: var(--wb-row-inner-height);
253
- border: none; }
254
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input:focus,
255
- div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > select:focus {
256
- border: 1px dashed #70c0e7; }
257
- div.wunderbaum.wb-grid.wb-cell-mode div.wb-row:not(.wb-colspan).wb-active span.wb-col.wb-active {
258
- background-color: var(--wb-active-cell-color-grayscale); }
259
- div.wunderbaum.wb-grid.wb-cell-mode:focus-within div.wb-row:not(.wb-colspan):not(.wb-selected) span.wb-col.wb-active, div.wunderbaum.wb-grid.wb-cell-mode:focus div.wb-row:not(.wb-colspan):not(.wb-selected) span.wb-col.wb-active {
260
- background-color: var(--wb-active-column-color); }
261
- div.wunderbaum.wb-grid.wb-cell-mode:focus-within div.wb-row:not(.wb-colspan):not(.wb-selected).wb-active, div.wunderbaum.wb-grid.wb-cell-mode:focus div.wb-row:not(.wb-colspan):not(.wb-selected).wb-active {
262
- background-color: var(--wb-active-column-color); }
263
- div.wunderbaum.wb-grid.wb-cell-mode:focus-within div.wb-row:not(.wb-colspan):not(.wb-selected).wb-active span.wb-col.wb-active, div.wunderbaum.wb-grid.wb-cell-mode:focus div.wb-row:not(.wb-colspan):not(.wb-selected).wb-active span.wb-col.wb-active {
264
- background-color: var(--wb-active-cell-color); }
265
- div.wunderbaum.wb-grid.wb-alternate div.wb-node-list div.wb-row:nth-of-type(even):not(.wb-active):not(.wb-selected) {
266
- background-color: var(--wb-alternate-row-color); }
267
- div.wunderbaum.wb-grid.wb-alternate div.wb-node-list div.wb-row:nth-of-type(even):not(.wb-active):not(.wb-selected):hover {
268
- background-color: var(--wb-alternate-row-color-hover); }
269
- div.wunderbaum.wb-grid:not(:focus-within) div.wb-node-list div.wb-row, div.wunderbaum.wb-grid:not(:focus) div.wb-node-list div.wb-row {
270
- border-bottom-color: var(--wb-grid-color-grayscale); }
271
- div.wunderbaum.wb-ext-filter-dim div.wb-node-list div.wb-row, div.wunderbaum.wb-ext-filter-hide div.wb-node-list div.wb-row {
272
- color: var(--wb-filter-dim-color); }
273
- div.wunderbaum.wb-ext-filter-dim div.wb-node-list div.wb-row.wb-submatch, div.wunderbaum.wb-ext-filter-hide div.wb-node-list div.wb-row.wb-submatch {
274
- color: var(--wb-filter-submatch-color); }
275
- div.wunderbaum.wb-ext-filter-dim div.wb-node-list div.wb-row.wb-match, div.wunderbaum.wb-ext-filter-hide div.wb-node-list div.wb-row.wb-match {
276
- color: var(--wb-node-text-color); }
277
- div.wunderbaum div.wb-row.wb-drag-source {
278
- opacity: 0.5; }
279
- div.wunderbaum div.wb-row.wb-drag-source .wb-node {
280
- background-color: var(--wb-drop-source-color); }
281
- div.wunderbaum div.wb-row.wb-drop-target {
282
- overflow: visible; }
283
- div.wunderbaum div.wb-row.wb-drop-target .wb-node {
284
- background-color: var(--wb-drop-target-color);
285
- overflow: visible; }
286
- div.wunderbaum div.wb-row.wb-drop-target .wb-node .wb-icon {
287
- position: relative;
288
- overflow: visible; }
289
- div.wunderbaum div.wb-row.wb-drop-target .wb-node .wb-icon::after {
290
- position: absolute;
291
- z-index: 1000;
292
- content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAMAAABA3o1rAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACKUExURe/v9/f39+//7+f35+f/79bW5wgIawwYd97e55Tnpc731rjA2d7350LOY1LWa7Xvvf///wAQcyAze97e773vxnuczgA5pQBCpdb33rXvxu//9whjxgBaxlKU1oOz5ABz3gB73tbn99bW1rXe/wCM9xiU997v/97e3gCc/xil/9bv/wic/+/3/wAAALM9X5QAAAAudFJOU////////////////////////////////////////////////////////////wCCj3NVAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAqUlEQVQoU6WQ2w6CMAxA54agsCHq1HlFBREv/f/fs1tHAoaoiedlbXrWtGXwhV8FNqAXuAi4DwkShmE0cgGIcSwCCgkSkrAxpEonot0DhQxJptFsbnOpdNdgsFh6VtYwyqzTmG+oijDY7hr22E4qY7QybeGQe46nsxP0Wwc3Q1GWl+qKec8MlqKubxX+xzV7tkDuD1+3d+heigT2zGx/hCMUeUj4wL8CwAsW1kqCTugMCwAAAABJRU5ErkJggg==);
293
- left: 0;
294
- top: 3px; }
295
- div.wunderbaum div.wb-row.wb-drop-target.wb-drop-before .wb-node .wb-icon::after,
296
- div.wunderbaum div.wb-row.wb-drop-target.wb-drop-after .wb-node .wb-icon::after {
297
- content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAQCAMAAACROYkbAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACNUExURe/v9/f39+//7+f35+f/79bW5wgIawwYd97e55Tnpc731rjA2d7350LOY1LWa7Xvvf///wAQcyAze97e773vxgAAAHuczgA5pQBCpdb33rXvxu//9whjxgBaxlKU1oOz5ABz3gB73tbn99bW1rXe/wCM9xiU997v/97e3gCc/xil/9bv/wic/+/3/wAAAParqS4AAAAvdFJOU/////////////////////////////////////////////////////////////8AWqU49wAAAAlwSFlzAAAOwwAADsMBx2+oZAAAALlJREFUOE/FktsSgiAQhglMS8WstKLzQTM77Ps/XguL16I208cFyzB8/LPAYCC/ErARzcCFx23pBgnGfjAxBYhpKDwq3SBB5DeGWCYz0SUDClIkmgeLpV7HMiNDbrbbYbBaWzbaoKTaJiHfQe5oYLA/NBwxTiyVyqTSghYwox4MTmfL5XozgqxjAtODoizv1QPXPXqgKer6WeH9+Iw9XgF5ve15/Q+6/SQSsE+q8yMcocoREgzg3wKAL4vrpBIKREShAAAAAElFTkSuQmCC);
298
- left: 0;
299
- top: -8px; }
300
- div.wunderbaum div.wb-row.wb-drop-target.wb-drop-after .wb-node .wb-icon::after {
301
- top: 14px; }
302
- div.wunderbaum.wb-rainbow i.wb-expander:nth-child(4n + 1),
303
- div.wunderbaum.wb-rainbow i.wb-indent:nth-child(4n + 1) {
304
- background: #ffffc9; }
305
- div.wunderbaum.wb-rainbow i.wb-expander:nth-child(4n + 2),
306
- div.wunderbaum.wb-rainbow i.wb-indent:nth-child(4n + 2) {
307
- background: #daffda; }
308
- div.wunderbaum.wb-rainbow i.wb-expander:nth-child(4n + 3),
309
- div.wunderbaum.wb-rainbow i.wb-indent:nth-child(4n + 3) {
310
- background: #ffd9fe; }
311
- div.wunderbaum.wb-rainbow i.wb-expander:nth-child(4n + 4),
312
- div.wunderbaum.wb-rainbow i.wb-indent:nth-child(4n + 4) {
313
- background: #ccfafa; }
314
- div.wunderbaum.wb-fade-expander i.wb-expander {
315
- transition: color 1.5s;
316
- color: rgba(86, 83, 76, 0); }
317
- div.wunderbaum.wb-fade-expander div.wb-row.wb-loading i.wb-expander,
318
- div.wunderbaum.wb-fade-expander:hover i.wb-expander,
319
- div.wunderbaum.wb-fade-expander:focus i.wb-expander,
320
- div.wunderbaum.wb-fade-expander:focus-within i.wb-expander,
321
- div.wunderbaum.wb-fade-expander [class*="wb-statusnode-"] i.wb-expander {
322
- transition: color 0.6s;
323
- color: var(--wb-node-text-color); }
324
- div.wunderbaum div.wb-row.wb-skeleton span.wb-title,
325
- div.wunderbaum div.wb-row.wb-skeleton i.wb-icon {
326
- animation: wb-skeleton-animation 1s linear infinite alternate;
327
- border-radius: 0.25em;
328
- color: transparent;
329
- opacity: 0.7; }
330
- div.wunderbaum.wb-checkbox-auto-hide i.wb-checkbox {
331
- visibility: hidden; }
332
- div.wunderbaum.wb-checkbox-auto-hide .wb-row:hover i.wb-checkbox,
333
- div.wunderbaum.wb-checkbox-auto-hide .wb-row.wb-selected i.wb-checkbox {
334
- visibility: unset; }
335
- div.wunderbaum.wb-checkbox-auto-hide:focus .wb-row.wb-active i.wb-checkbox, div.wunderbaum.wb-checkbox-auto-hide:focus-within .wb-row.wb-active i.wb-checkbox {
336
- visibility: unset; }
80
+ /* Auto-hide checkboxes unless selected or hovered */
81
+ }
82
+ div.wunderbaum:focus, div.wunderbaum:focus-within {
83
+ border-color: var(--wb-focus-border-color);
84
+ }
85
+ div.wunderbaum.wb-disabled {
86
+ opacity: 0.7;
87
+ pointer-events: none;
88
+ }
89
+ div.wunderbaum div.wb-list-container {
90
+ position: relative;
91
+ min-height: 4px;
92
+ }
93
+ div.wunderbaum div.wb-header {
94
+ position: sticky;
95
+ top: 0;
96
+ z-index: 2;
97
+ }
98
+ div.wunderbaum div.wb-header,
99
+ div.wunderbaum div.wb-list-container {
100
+ overflow: unset;
101
+ }
102
+ div.wunderbaum div.wb-row {
103
+ position: absolute;
104
+ width: 100%;
105
+ height: var(--wb-row-outer-height);
106
+ line-height: var(--wb-row-outer-height);
107
+ border: 1px solid transparent;
108
+ }
109
+ div.wunderbaum.wb-fixed-col span.wb-col:first-of-type {
110
+ position: sticky;
111
+ left: 0;
112
+ z-index: 1;
113
+ background-color: var(--wb-background-color);
114
+ }
115
+ div.wunderbaum.wb-fixed-col div.wb-header span.wb-col:first-of-type {
116
+ background-color: var(--wb-header-color);
117
+ }
118
+ div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type {
119
+ background-color: var(--wb-active-color);
120
+ }
121
+ div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row.wb-active:hover span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row.wb-selected:hover span.wb-col:first-of-type {
122
+ background-color: var(--wb-active-hover-color);
123
+ }
124
+ div.wunderbaum.wb-fixed-col div.wb-node-list div.wb-row:hover span.wb-col:first-of-type {
125
+ background-color: var(--wb-hover-color);
126
+ }
127
+ div.wunderbaum.wb-fixed-col:not(:focus-within) div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col:not(:focus-within) div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col:not(:focus) div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col:not(:focus) div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type {
128
+ background-color: var(--wb-active-color-grayscale);
129
+ border-color: var(--wb-active-border-color-grayscale);
130
+ }
131
+ div.wunderbaum.wb-fixed-col:not(:focus-within) div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type:hover span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col:not(:focus-within) div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type:hover span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col:not(:focus) div.wb-node-list div.wb-row.wb-active span.wb-col:first-of-type:hover span.wb-col:first-of-type, div.wunderbaum.wb-fixed-col:not(:focus) div.wb-node-list div.wb-row.wb-selected span.wb-col:first-of-type:hover span.wb-col:first-of-type {
132
+ background-color: var(--wb-active-hover-color-grayscale);
133
+ }
134
+ div.wunderbaum:not(:focus-within) div.wb-node-list div.wb-row.wb-active, div.wunderbaum:not(:focus-within) div.wb-node-list div.wb-row.wb-selected, div.wunderbaum:not(:focus) div.wb-node-list div.wb-row.wb-active, div.wunderbaum:not(:focus) div.wb-node-list div.wb-row.wb-selected {
135
+ background-color: var(--wb-active-color-grayscale);
136
+ border-color: var(--wb-active-border-color-grayscale);
137
+ }
138
+ div.wunderbaum:not(:focus-within) div.wb-node-list div.wb-row.wb-active:hover, div.wunderbaum:not(:focus-within) div.wb-node-list div.wb-row.wb-selected:hover, div.wunderbaum:not(:focus) div.wb-node-list div.wb-row.wb-active:hover, div.wunderbaum:not(:focus) div.wb-node-list div.wb-row.wb-selected:hover {
139
+ background-color: var(--wb-active-hover-color-grayscale);
140
+ }
141
+ div.wunderbaum.wb-alternate div.wb-node-list div.wb-row:nth-of-type(even):not(.wb-active):not(.wb-selected) {
142
+ background-color: var(--wb-alternate-row-color);
143
+ }
144
+ div.wunderbaum.wb-alternate div.wb-node-list div.wb-row:nth-of-type(even):not(.wb-active):not(.wb-selected):hover {
145
+ background-color: var(--wb-alternate-row-color-hover);
146
+ }
147
+ div.wunderbaum div.wb-node-list div.wb-row:hover {
148
+ background-color: var(--wb-hover-color);
149
+ }
150
+ div.wunderbaum div.wb-node-list div.wb-row.wb-active, div.wunderbaum div.wb-node-list div.wb-row.wb-selected {
151
+ background-color: var(--wb-active-color);
152
+ }
153
+ div.wunderbaum div.wb-node-list div.wb-row.wb-active:hover, div.wunderbaum div.wb-node-list div.wb-row.wb-selected:hover {
154
+ background-color: var(--wb-active-hover-color);
155
+ }
156
+ div.wunderbaum div.wb-node-list div.wb-row.wb-focus:not(.wb-active) {
157
+ border-style: dotted;
158
+ border-color: var(--wb-active-border-color);
159
+ }
160
+ div.wunderbaum div.wb-node-list div.wb-row.wb-active {
161
+ border-style: solid;
162
+ border-color: var(--wb-active-border-color);
163
+ }
164
+ div.wunderbaum div.wb-node-list div.wb-row.wb-active:hover {
165
+ border-color: var(--wb-active-hover-border-color);
166
+ }
167
+ div.wunderbaum div.wb-node-list div.wb-row.wb-loading {
168
+ font-style: italic;
169
+ }
170
+ div.wunderbaum div.wb-node-list div.wb-row.wb-busy,
171
+ div.wunderbaum div.wb-node-list div.wb-row i.wb-busy,
172
+ div.wunderbaum div.wb-node-list div.wb-row .wb-col.wb-busy {
173
+ font-style: italic;
174
+ background: repeating-linear-gradient(45deg, transparent, transparent 3.88px, var(--wb-grid-color) 3.88px, var(--wb-grid-color) 7.78px);
175
+ animation: wb-busy-animation 2s linear infinite;
176
+ }
177
+ div.wunderbaum div.wb-node-list div.wb-row.wb-error, div.wunderbaum div.wb-node-list div.wb-row.wb-status-error {
178
+ color: var(--wb-error-color);
179
+ }
180
+ div.wunderbaum div.wb-header {
181
+ position: sticky;
182
+ height: var(--wb-header-height);
183
+ border-bottom: 1px solid var(--wb-border-color);
184
+ padding: 0;
185
+ background-color: var(--wb-header-color);
186
+ }
187
+ div.wunderbaum div.wb-header span.wb-col {
188
+ font-weight: bold;
189
+ overflow: visible;
190
+ }
191
+ div.wunderbaum div.wb-header span.wb-col-title {
192
+ width: 100%;
193
+ overflow: hidden;
194
+ white-space: nowrap;
195
+ text-overflow: ellipsis;
196
+ }
197
+ div.wunderbaum div.wb-header span.wb-col-resizer {
198
+ position: absolute;
199
+ top: 0;
200
+ right: -1px;
201
+ width: 3px;
202
+ border: none;
203
+ border-right: 2px solid var(--wb-border-color);
204
+ height: 100%;
205
+ cursor: col-resize;
206
+ }
207
+ div.wunderbaum span.wb-col {
208
+ position: absolute;
209
+ display: inline-block;
210
+ overflow: hidden;
211
+ height: var(--wb-row-inner-height);
212
+ line-height: var(--wb-row-inner-height);
213
+ padding: 0 val(--wb-col-padding-x);
214
+ border-right: 1px solid var(--wb-grid-color);
215
+ white-space: nowrap;
216
+ }
217
+ div.wunderbaum span.wb-col:last-of-type {
218
+ border-right: none;
219
+ }
220
+ div.wunderbaum span.wb-node {
221
+ user-select: none;
222
+ /* Fix Bootstrap Icon alignment */
223
+ }
224
+ div.wunderbaum span.wb-node i.wb-checkbox,
225
+ div.wunderbaum span.wb-node i.wb-expander,
226
+ div.wunderbaum span.wb-node i.wb-icon,
227
+ div.wunderbaum span.wb-node i.wb-indent {
228
+ height: var(--wb-icon-outer-height);
229
+ width: var(--wb-icon-outer-width);
230
+ padding: var(--wb-icon-padding) var(--wb-icon-padding-x);
231
+ display: inline-block;
232
+ }
233
+ div.wunderbaum span.wb-node i.bi::before {
234
+ vertical-align: baseline;
235
+ }
236
+ div.wunderbaum span.wb-node img.wb-icon {
237
+ width: var(--wb-icon-width);
238
+ height: var(--wb-icon-height);
239
+ padding: var(--wb-icon-padding-y) var(--wb-icon-padding-x);
240
+ }
241
+ div.wunderbaum span.wb-node i.wb-indent::before {
242
+ content: " ";
243
+ }
244
+ div.wunderbaum span.wb-node i.wb-expander.wb-spin,
245
+ div.wunderbaum span.wb-node i.wb-icon.wb-spin {
246
+ height: unset;
247
+ width: unset;
248
+ padding: 0 3px;
249
+ animation: wb-spin-animation 2s linear infinite;
250
+ }
251
+ div.wunderbaum span.wb-node span.wb-title {
252
+ min-width: 1em;
253
+ vertical-align: top;
254
+ overflow-x: hidden;
255
+ display: inline-block;
256
+ white-space: nowrap;
257
+ text-overflow: ellipsis;
258
+ }
259
+ div.wunderbaum.wb-grid div.wb-header div.wb-row span.wb-col:hover {
260
+ background-color: var(--wb-active-header-column-color);
261
+ }
262
+ div.wunderbaum.wb-grid.wb-cell-mode div.wb-header div.wb-row span.wb-col.wb-active {
263
+ background-color: var(--wb-active-hover-color);
264
+ }
265
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row {
266
+ border-bottom-color: var(--wb-grid-color);
267
+ }
268
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row:hover:not(.wb-active):not(.wb-selected) {
269
+ background-color: var(--wb-hover-color);
270
+ }
271
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row.wb-active {
272
+ border-bottom-color: var(--wb-active-border-color);
273
+ }
274
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col {
275
+ border-right: 1px solid var(--wb-grid-color);
276
+ }
277
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col input.wb-input-edit,
278
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=color],
279
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=date],
280
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=datetime],
281
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=datetime-local],
282
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=email],
283
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=month],
284
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=number],
285
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=password],
286
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=search],
287
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=tel],
288
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=text],
289
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=time],
290
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=url],
291
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input[type=week],
292
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > select {
293
+ width: 100%;
294
+ max-height: var(--wb-row-inner-height);
295
+ border: none;
296
+ }
297
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > input:focus,
298
+ div.wunderbaum.wb-grid div.wb-node-list div.wb-row span.wb-col > select:focus {
299
+ border: 1px dashed #70c0e7;
300
+ }
301
+ div.wunderbaum.wb-grid.wb-cell-mode div.wb-row:not(.wb-colspan).wb-active span.wb-col.wb-active {
302
+ background-color: var(--wb-active-cell-color-grayscale);
303
+ }
304
+ div.wunderbaum.wb-grid.wb-cell-mode:focus-within div.wb-row:not(.wb-colspan):not(.wb-selected) span.wb-col.wb-active, div.wunderbaum.wb-grid.wb-cell-mode:focus div.wb-row:not(.wb-colspan):not(.wb-selected) span.wb-col.wb-active {
305
+ background-color: var(--wb-active-column-color);
306
+ }
307
+ div.wunderbaum.wb-grid.wb-cell-mode:focus-within div.wb-row:not(.wb-colspan):not(.wb-selected).wb-active, div.wunderbaum.wb-grid.wb-cell-mode:focus div.wb-row:not(.wb-colspan):not(.wb-selected).wb-active {
308
+ background-color: var(--wb-active-column-color);
309
+ }
310
+ div.wunderbaum.wb-grid.wb-cell-mode:focus-within div.wb-row:not(.wb-colspan):not(.wb-selected).wb-active span.wb-col.wb-active, div.wunderbaum.wb-grid.wb-cell-mode:focus div.wb-row:not(.wb-colspan):not(.wb-selected).wb-active span.wb-col.wb-active {
311
+ background-color: var(--wb-active-cell-color);
312
+ }
313
+ div.wunderbaum.wb-grid.wb-alternate div.wb-node-list div.wb-row:nth-of-type(even):not(.wb-active):not(.wb-selected) {
314
+ background-color: var(--wb-alternate-row-color);
315
+ }
316
+ div.wunderbaum.wb-grid.wb-alternate div.wb-node-list div.wb-row:nth-of-type(even):not(.wb-active):not(.wb-selected):hover {
317
+ background-color: var(--wb-alternate-row-color-hover);
318
+ }
319
+ div.wunderbaum.wb-grid:not(:focus-within) div.wb-node-list div.wb-row, div.wunderbaum.wb-grid:not(:focus) div.wb-node-list div.wb-row {
320
+ border-bottom-color: var(--wb-grid-color-grayscale);
321
+ }
322
+ div.wunderbaum.wb-ext-filter-dim div.wb-node-list div.wb-row, div.wunderbaum.wb-ext-filter-hide div.wb-node-list div.wb-row {
323
+ color: var(--wb-filter-dim-color);
324
+ }
325
+ div.wunderbaum.wb-ext-filter-dim div.wb-node-list div.wb-row.wb-submatch, div.wunderbaum.wb-ext-filter-hide div.wb-node-list div.wb-row.wb-submatch {
326
+ color: var(--wb-filter-submatch-color);
327
+ }
328
+ div.wunderbaum.wb-ext-filter-dim div.wb-node-list div.wb-row.wb-match, div.wunderbaum.wb-ext-filter-hide div.wb-node-list div.wb-row.wb-match {
329
+ color: var(--wb-node-text-color);
330
+ }
331
+ div.wunderbaum div.wb-row.wb-drag-source {
332
+ opacity: 0.5;
333
+ }
334
+ div.wunderbaum div.wb-row.wb-drag-source .wb-node {
335
+ background-color: var(--wb-drop-source-color);
336
+ }
337
+ div.wunderbaum div.wb-row.wb-drop-target {
338
+ overflow: visible;
339
+ }
340
+ div.wunderbaum div.wb-row.wb-drop-target .wb-node {
341
+ background-color: var(--wb-drop-target-color);
342
+ overflow: visible;
343
+ }
344
+ div.wunderbaum div.wb-row.wb-drop-target .wb-node .wb-icon {
345
+ position: relative;
346
+ overflow: visible;
347
+ }
348
+ div.wunderbaum div.wb-row.wb-drop-target .wb-node .wb-icon::after {
349
+ position: absolute;
350
+ z-index: 1000;
351
+ content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAMAAABA3o1rAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACKUExURe/v9/f39+//7+f35+f/79bW5wgIawwYd97e55Tnpc731rjA2d7350LOY1LWa7Xvvf///wAQcyAze97e773vxnuczgA5pQBCpdb33rXvxu//9whjxgBaxlKU1oOz5ABz3gB73tbn99bW1rXe/wCM9xiU997v/97e3gCc/xil/9bv/wic/+/3/wAAALM9X5QAAAAudFJOU////////////////////////////////////////////////////////////wCCj3NVAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAqUlEQVQoU6WQ2w6CMAxA54agsCHq1HlFBREv/f/fs1tHAoaoiedlbXrWtGXwhV8FNqAXuAi4DwkShmE0cgGIcSwCCgkSkrAxpEonot0DhQxJptFsbnOpdNdgsFh6VtYwyqzTmG+oijDY7hr22E4qY7QybeGQe46nsxP0Wwc3Q1GWl+qKec8MlqKubxX+xzV7tkDuD1+3d+heigT2zGx/hCMUeUj4wL8CwAsW1kqCTugMCwAAAABJRU5ErkJggg==);
352
+ left: 0;
353
+ top: calc((22px - --wb-icon-height) / 2);
354
+ }
355
+ div.wunderbaum div.wb-row.wb-drop-target.wb-drop-before .wb-node .wb-icon::after,
356
+ div.wunderbaum div.wb-row.wb-drop-target.wb-drop-after .wb-node .wb-icon::after {
357
+ content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAAAQCAMAAACROYkbAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACNUExURe/v9/f39+//7+f35+f/79bW5wgIawwYd97e55Tnpc731rjA2d7350LOY1LWa7Xvvf///wAQcyAze97e773vxgAAAHuczgA5pQBCpdb33rXvxu//9whjxgBaxlKU1oOz5ABz3gB73tbn99bW1rXe/wCM9xiU997v/97e3gCc/xil/9bv/wic/+/3/wAAAParqS4AAAAvdFJOU/////////////////////////////////////////////////////////////8AWqU49wAAAAlwSFlzAAAOwwAADsMBx2+oZAAAALlJREFUOE/FktsSgiAQhglMS8WstKLzQTM77Ps/XguL16I208cFyzB8/LPAYCC/ErARzcCFx23pBgnGfjAxBYhpKDwq3SBB5DeGWCYz0SUDClIkmgeLpV7HMiNDbrbbYbBaWzbaoKTaJiHfQe5oYLA/NBwxTiyVyqTSghYwox4MTmfL5XozgqxjAtODoizv1QPXPXqgKer6WeH9+Iw9XgF5ve15/Q+6/SQSsE+q8yMcocoREgzg3wKAL4vrpBIKREShAAAAAElFTkSuQmCC);
358
+ left: 0;
359
+ top: calc((22px - --wb-icon-height) / 2 - 11px);
360
+ }
361
+ div.wunderbaum div.wb-row.wb-drop-target.wb-drop-after .wb-node .wb-icon::after {
362
+ top: calc((22px - --wb-icon-height) / 2 + 11px);
363
+ }
364
+ div.wunderbaum.wb-rainbow i.wb-expander:nth-child(4n+1),
365
+ div.wunderbaum.wb-rainbow i.wb-indent:nth-child(4n+1) {
366
+ background: rgb(255, 255, 201);
367
+ }
368
+ div.wunderbaum.wb-rainbow i.wb-expander:nth-child(4n+2),
369
+ div.wunderbaum.wb-rainbow i.wb-indent:nth-child(4n+2) {
370
+ background: rgb(218, 255, 218);
371
+ }
372
+ div.wunderbaum.wb-rainbow i.wb-expander:nth-child(4n+3),
373
+ div.wunderbaum.wb-rainbow i.wb-indent:nth-child(4n+3) {
374
+ background: rgb(255, 217, 254);
375
+ }
376
+ div.wunderbaum.wb-rainbow i.wb-expander:nth-child(4n+4),
377
+ div.wunderbaum.wb-rainbow i.wb-indent:nth-child(4n+4) {
378
+ background: rgb(204, 250, 250);
379
+ }
380
+ div.wunderbaum.wb-fade-expander i.wb-expander {
381
+ transition: color 1.5s;
382
+ color: rgba(86, 83, 76, 0);
383
+ }
384
+ div.wunderbaum.wb-fade-expander div.wb-row.wb-loading i.wb-expander, div.wunderbaum.wb-fade-expander:hover i.wb-expander, div.wunderbaum.wb-fade-expander:focus i.wb-expander, div.wunderbaum.wb-fade-expander:focus-within i.wb-expander,
385
+ div.wunderbaum.wb-fade-expander [class*=wb-statusnode-] i.wb-expander {
386
+ transition: color 0.6s;
387
+ color: var(--wb-node-text-color);
388
+ }
389
+ div.wunderbaum div.wb-row.wb-skeleton span.wb-title,
390
+ div.wunderbaum div.wb-row.wb-skeleton i.wb-icon {
391
+ animation: wb-skeleton-animation 1s linear infinite alternate;
392
+ border-radius: 0.25em;
393
+ color: transparent;
394
+ opacity: 0.7;
395
+ }
396
+ div.wunderbaum.wb-checkbox-auto-hide i.wb-checkbox {
397
+ visibility: hidden;
398
+ }
399
+ div.wunderbaum.wb-checkbox-auto-hide .wb-row:hover i.wb-checkbox,
400
+ div.wunderbaum.wb-checkbox-auto-hide .wb-row.wb-selected i.wb-checkbox {
401
+ visibility: unset;
402
+ }
403
+ div.wunderbaum.wb-checkbox-auto-hide:focus .wb-row.wb-active i.wb-checkbox, div.wunderbaum.wb-checkbox-auto-hide:focus-within .wb-row.wb-active i.wb-checkbox {
404
+ visibility: unset;
405
+ }
337
406
 
338
407
  /* --- TOOL CLASSES --- */
339
408
  .wb-helper-center {
340
- text-align: center; }
409
+ text-align: center;
410
+ }
341
411
 
342
412
  .wb-helper-disabled {
343
- color: var(--wb-dim-color); }
413
+ color: var(--wb-dim-color);
414
+ }
344
415
 
345
416
  .wb-helper-hidden {
346
- display: none; }
417
+ display: none;
418
+ }
347
419
 
348
420
  .wb-helper-invalid {
349
- color: var(--wb-error-color); }
421
+ color: var(--wb-error-color);
422
+ }
350
423
 
351
424
  .wb-helper-lazy-expander {
352
- color: var(--wb-bg-highlight-color); }
425
+ color: var(--wb-bg-highlight-color);
426
+ }
353
427
 
354
428
  .wb-helper-link {
355
- cursor: pointer; }
429
+ cursor: pointer;
430
+ }
356
431
 
357
432
  .wb-no-select {
358
433
  user-select: none;
359
- -webkit-user-select: none; }
360
- .wb-no-select span.wb-title {
361
- user-select: contain;
362
- -webkit-user-select: contain; }
434
+ -webkit-user-select: none;
435
+ }
436
+ .wb-no-select span.wb-title {
437
+ user-select: contain;
438
+ -webkit-user-select: contain;
439
+ }
363
440
 
364
441
  /* RTL support */
365
442
  .wb-helper-start,
366
443
  .wb-helper-start > input {
367
- text-align: left; }
444
+ text-align: left;
445
+ }
368
446
 
369
447
  .wb-helper-end,
370
448
  .wb-helper-end > input {
371
- text-align: right; }
449
+ text-align: right;
450
+ }
372
451
 
373
452
  .wb-rtl .wb-helper-start,
374
453
  .wb-rtl .wb-helper-start > input {
375
- text-align: right; }
376
-
454
+ text-align: right;
455
+ }
377
456
  .wb-rtl .wb-helper-end,
378
457
  .wb-rtl .wb-helper-end > input {
379
- text-align: left; }
458
+ text-align: left;
459
+ }
380
460
 
381
461
  /* Class 'wb-tristate' is used to mark checkboxes that should toggle like
382
462
  * indeterminate -> checked -> unchecked -> indeterminate ...
383
463
  */
384
- .wb-col input[type="checkbox"]:indeterminate {
464
+ .wb-col input[type=checkbox]:indeterminate {
385
465
  color: var(--wb-dim-color);
386
- background-color: red; }
466
+ background-color: red;
467
+ }
387
468
 
388
469
  .wb-col input:invalid {
389
470
  color: var(--wb-error-color);
390
- background-color: var(--wb-error-background-color); }
471
+ background-color: var(--wb-error-background-color);
472
+ }
391
473
 
392
474
  @keyframes wb-spin-animation {
393
475
  0% {
394
- transform: rotate(0deg); }
476
+ transform: rotate(0deg);
477
+ }
395
478
  to {
396
- transform: rotate(1turn); } }
397
-
479
+ transform: rotate(1turn);
480
+ }
481
+ }
398
482
  @keyframes wb-skeleton-animation {
399
483
  0% {
400
- background-color: #a3b8c2; }
484
+ background-color: hsl(200, 20%, 70%);
485
+ }
401
486
  100% {
402
- background-color: #f0f3f5; } }
403
-
487
+ background-color: hsl(200, 20%, 95%);
488
+ }
489
+ }
404
490
  @keyframes wb-busy-animation {
405
491
  0% {
406
- background-position: 0 0; }
492
+ background-position: 0 0;
493
+ }
407
494
  100% {
408
- background-position: 0 22px; } }
495
+ background-position: 0 22px;
496
+ }
497
+ }
498
+
499
+ /*# sourceMappingURL=wunderbaum.css.map */