@navikt/ds-css 8.10.6 → 8.11.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.
@@ -0,0 +1,613 @@
1
+ @layer aksel.reset, aksel.theming, aksel.baseline, aksel.print, aksel.typography, aksel.components.core, aksel.components.core.loader, aksel.components.core.button, aksel.components.form;
2
+
3
+ @layer aksel.components.modules {
4
+ .aksel-data-grid {
5
+ flex-direction: column;
6
+ flex-grow: 1;
7
+ width: 100%;
8
+ display: flex;
9
+ overflow: hidden;
10
+ }
11
+
12
+ .aksel-data-table__border-wrapper {
13
+ max-height: 100%;
14
+ display: flex;
15
+ }
16
+
17
+ .aksel-data-table__scroll-wrapper {
18
+ scroll-timeline: --horizontal-table-scroll inline;
19
+ width: 100%;
20
+ position: relative;
21
+ overflow: auto;
22
+ }
23
+
24
+ .aksel-data-table[data-layout="fixed"] {
25
+ table-layout: fixed;
26
+ width: 1px;
27
+ min-width: 100%;
28
+ }
29
+
30
+ .aksel-data-table[data-layout="auto"] {
31
+ min-width: 100%;
32
+ }
33
+
34
+ .aksel-data-table {
35
+ --__axc-data-table-text-size: var(--ax-font-size-large);
36
+ --__axc-data-table-density: var(--ax-space-12);
37
+ }
38
+
39
+ .aksel-data-table[data-text-size="small"] {
40
+ --__axc-data-table-text-size: var(--ax-font-size-medium);
41
+ }
42
+
43
+ .aksel-data-table[data-density="tight"] {
44
+ --__axc-data-table-density: var(--ax-space-6);
45
+ }
46
+
47
+ .aksel-data-table[data-density="loose"] {
48
+ --__axc-data-table-density: var(--ax-space-20);
49
+ }
50
+
51
+ .aksel-data-table[data-zebra-stripes="true"] .aksel-data-table__tbody :where(.aksel-data-table__tr:nth-child(odd)) {
52
+ background-color: var(--ax-bg-neutral-softA);
53
+ }
54
+
55
+ .aksel-data-table__thead {
56
+ background-color: var(--ax-bg-raised);
57
+ box-shadow: 0 1px 0 0 var(--ax-border-neutral-subtle);
58
+ position: relative;
59
+ }
60
+
61
+ .aksel-data-table[data-loading="true"] .aksel-data-table__thead:after {
62
+ content: "";
63
+ background-color: var(--ax-bg-strong);
64
+ z-index: 11;
65
+ block-size: 2px;
66
+ animation: 1s linear infinite animateDataTableLoading;
67
+ position: absolute;
68
+ }
69
+
70
+ .aksel-data-table__thead[data-sticky="true"] {
71
+ z-index: 3;
72
+ position: sticky;
73
+ top: 0;
74
+ }
75
+
76
+ .aksel-data-table__tbody {
77
+ background-color: var(--ax-bg-raised);
78
+ position: relative;
79
+ }
80
+
81
+ .aksel-data-table__tbody[inert] {
82
+ opacity: var(--ax-opacity-disabled);
83
+ }
84
+
85
+ .aksel-data-table__tbody[inert]:after {
86
+ content: "";
87
+ background-color: var(--ax-bg-overlay);
88
+ z-index: 2;
89
+ opacity: .2;
90
+ position: absolute;
91
+ inset: 0;
92
+ }
93
+
94
+ .aksel-data-table__tr[data-selected="true"] {
95
+ background-color: var(--ax-bg-softA);
96
+ }
97
+
98
+ .aksel-data-table__border-wrapper {
99
+ border-radius: var(--ax-radius-12);
100
+ position: relative;
101
+ overflow: hidden;
102
+ }
103
+
104
+ .aksel-data-table__border-wrapper:after {
105
+ content: "";
106
+ pointer-events: none;
107
+ border: 1px solid var(--ax-border-neutral-subtle);
108
+ border-radius: var(--ax-radius-12);
109
+ z-index: 3;
110
+ position: absolute;
111
+ inset: 0;
112
+ }
113
+
114
+ .aksel-data-table {
115
+ border-collapse: collapse;
116
+ border-spacing: 0;
117
+ border-right: 1px solid var(--ax-border-neutral-subtle);
118
+ border-bottom: 1px solid var(--ax-border-neutral-subtle);
119
+ }
120
+
121
+ @keyframes scroll-shadow-fade-start {
122
+ 0% {
123
+ opacity: 0;
124
+ }
125
+
126
+ 10%, 100% {
127
+ opacity: 1;
128
+ }
129
+ }
130
+
131
+ @keyframes scroll-shadow-fade-end {
132
+ 90% {
133
+ opacity: 1;
134
+ }
135
+
136
+ 100% {
137
+ opacity: 0;
138
+ }
139
+ }
140
+
141
+ .aksel-data-table__cell {
142
+ box-shadow: inset 1px 1px 0 0 var(--ax-border-neutral-subtle);
143
+ text-align: start;
144
+ vertical-align: middle;
145
+ scroll-margin: var(--ax-space-0);
146
+ font-size: var(--__axc-data-table-text-size);
147
+ padding: 0;
148
+ }
149
+
150
+ .aksel-data-table__cell:not(.aksel-data-table__column-header) {
151
+ overflow: hidden;
152
+ }
153
+
154
+ .aksel-data-table__cell[data-nested="true"] {
155
+ position: relative;
156
+ }
157
+
158
+ .aksel-data-table__cell[data-nested="true"] > .aksel-data-table__cell-content {
159
+ margin-inline-start: calc(32px + 8px + calc(var(--__axc-data-table-nested-depth) * var(--ax-space-16)));
160
+ }
161
+
162
+ .aksel-data-table__thead .aksel-data-table__cell {
163
+ background-color: var(--ax-bg-neutral-soft);
164
+ }
165
+
166
+ .aksel-data-table__cell[data-align="left"] {
167
+ text-align: start;
168
+ }
169
+
170
+ .aksel-data-table__cell[data-align="center"] {
171
+ text-align: center;
172
+ }
173
+
174
+ .aksel-data-table__cell[data-align="right"] {
175
+ text-align: end;
176
+ }
177
+
178
+ .aksel-data-table__cell[data-sticky] {
179
+ z-index: 1;
180
+ position: sticky;
181
+ }
182
+
183
+ .aksel-data-table__cell[data-sticky]:after {
184
+ content: "";
185
+ pointer-events: none;
186
+ border-color: var(--ax-border-neutral-subtle);
187
+ border-style: solid;
188
+ border-width: 0;
189
+ position: absolute;
190
+ inset-block: 0;
191
+ }
192
+
193
+ .aksel-data-table__cell[data-sticky][data-sticky="start"] {
194
+ left: 0;
195
+ }
196
+
197
+ .aksel-data-table__cell[data-sticky][data-sticky="start"][data-sticky-last]:before {
198
+ content: "";
199
+ pointer-events: none;
200
+ width: 100%;
201
+ height: 100%;
202
+ box-shadow: 4px 0 8px 1px var(--ax-border-neutral-subtleA);
203
+ clip-path: inset(0 -24px 0 0);
204
+ opacity: 0;
205
+ position: absolute;
206
+ inset: 0;
207
+ }
208
+
209
+ .aksel-data-table[data-scroll] .aksel-data-table__cell[data-sticky][data-sticky="start"][data-sticky-last]:before {
210
+ opacity: 1;
211
+ animation: 1s linear scroll-shadow-fade-start;
212
+ animation-timeline: --horizontal-table-scroll;
213
+ }
214
+
215
+ .aksel-data-table__cell[data-sticky][data-sticky="start"][data-sticky-last]:after {
216
+ border-right-width: 1px;
217
+ inset-inline: 0 -1px;
218
+ }
219
+
220
+ .aksel-data-table__cell[data-sticky][data-sticky="end"] {
221
+ right: 0;
222
+ }
223
+
224
+ .aksel-data-table__cell[data-sticky][data-sticky="end"]:before {
225
+ content: "";
226
+ pointer-events: none;
227
+ width: 100%;
228
+ height: 100%;
229
+ box-shadow: -4px 0 8px 1px var(--ax-border-neutral-subtleA);
230
+ clip-path: inset(0 0 0 -24px);
231
+ opacity: 0;
232
+ position: absolute;
233
+ inset: 0;
234
+ }
235
+
236
+ .aksel-data-table[data-scroll] .aksel-data-table__cell[data-sticky][data-sticky="end"]:before {
237
+ opacity: 1;
238
+ animation: 1s linear scroll-shadow-fade-end;
239
+ animation-timeline: --horizontal-table-scroll;
240
+ }
241
+
242
+ .aksel-data-table__cell[data-sticky] {
243
+ background-color: var(--ax-bg-raised);
244
+ }
245
+
246
+ .aksel-data-table__tr[data-selected="true"] .aksel-data-table__cell[data-sticky] {
247
+ background-color: var(--ax-bg-soft);
248
+ }
249
+
250
+ .aksel-data-table__thead .aksel-data-table__cell[data-sticky] {
251
+ background-color: var(--ax-bg-neutral-soft);
252
+ }
253
+
254
+ .aksel-data-table__cell:focus-visible, .aksel-data-table__cell:has(.aksel-data-table__th-sort-button:focus) {
255
+ outline: 2px solid var(--ax-border-focus);
256
+ outline-offset: -4px;
257
+ }
258
+
259
+ .aksel-data-table__cell[data-cell-type="action"] {
260
+ padding: 0;
261
+ }
262
+
263
+ .aksel-data-table__cell[data-cell-type="action"] > .aksel-data-table__cell-content {
264
+ place-content: center;
265
+ display: grid;
266
+ }
267
+
268
+ .aksel-data-table__cell {
269
+ --__axc-data-table-pi-cell: var(--ax-space-16);
270
+ }
271
+
272
+ .aksel-data-table__cell:not([data-cell-type="action"]) > .aksel-data-table__cell-content {
273
+ padding-block: var(--__axc-data-table-density);
274
+ padding-inline: var(--__axc-data-table-pi-cell);
275
+ overflow: hidden;
276
+ }
277
+
278
+ .aksel-data-table[data-truncate-content="true"] :is(.aksel-data-table__cell:not([data-cell-type="action"]) > .aksel-data-table__cell-content) {
279
+ text-overflow: ellipsis;
280
+ white-space: nowrap;
281
+ }
282
+
283
+ .aksel-data-table__column-header {
284
+ --__axc-data-table-density: var(--ax-space-8);
285
+ font-weight: var(--ax-font-weight-bold);
286
+ position: relative;
287
+ }
288
+
289
+ .aksel-data-table__column-header:has(.aksel-data-table__th-sort-button:hover:not(:disabled)) {
290
+ background-color: var(--ax-bg-neutral-moderate-hover);
291
+ }
292
+
293
+ .aksel-data-table__column-header:has(.aksel-data-table__th-sort-button:active:not(:disabled)) {
294
+ background-color: var(--ax-bg-neutral-moderate-pressed);
295
+ }
296
+
297
+ .aksel-data-table__column-header[data-sortable="true"] {
298
+ block-size: calc(var(--__axc-data-table-density) + 1.5rem);
299
+ padding: 0;
300
+ }
301
+
302
+ .aksel-data-table__th-sort-button {
303
+ align-items: center;
304
+ gap: var(--ax-space-2);
305
+ block-size: calc(var(--__axc-data-table-density) + 1.5rem);
306
+ cursor: pointer;
307
+ text-align: start;
308
+ width: 100%;
309
+ font-weight: inherit;
310
+ background-color: rgba(0, 0, 0, 0);
311
+ border: none;
312
+ padding: 0;
313
+ display: flex;
314
+ }
315
+
316
+ .aksel-data-table__th-sort-button:focus-visible {
317
+ outline: none;
318
+ }
319
+
320
+ .aksel-data-table__th-sort-button:disabled {
321
+ color: inherit;
322
+ cursor: default;
323
+ }
324
+
325
+ .aksel-data-table__th-sort-icon {
326
+ flex-shrink: 0;
327
+ margin-left: auto;
328
+ }
329
+
330
+ .aksel-data-table__th-sort-icon[data-sort-direction="none"] {
331
+ visibility: hidden;
332
+ }
333
+
334
+ .aksel-data-table__th-sort-button:is(:hover, :focus-visible, :focus-within):not(:disabled) .aksel-data-table__th-sort-icon {
335
+ visibility: visible;
336
+ }
337
+
338
+ .aksel-data-table[data-layout="fixed"] .aksel-data-table__th-sort-icon[data-sort-direction="none"] {
339
+ display: none;
340
+ }
341
+
342
+ .aksel-data-table[data-layout="fixed"] .aksel-data-table__th-sort-button:is(:hover, :focus-visible, :focus-within) .aksel-data-table__th-sort-icon {
343
+ display: block;
344
+ }
345
+
346
+ .aksel-data-table__th-content {
347
+ text-overflow: ellipsis;
348
+ white-space: nowrap;
349
+ overflow: hidden;
350
+ }
351
+
352
+ .aksel-data-table__th-resize-handle {
353
+ z-index: 1;
354
+ cursor: col-resize;
355
+ background: none;
356
+ border: none;
357
+ justify-content: center;
358
+ width: 19px;
359
+ margin: 0;
360
+ padding: 0;
361
+ display: flex;
362
+ position: absolute;
363
+ inset-block: 0;
364
+ inset-inline-end: -10px;
365
+ }
366
+
367
+ .aksel-data-table__th-resize-handle:focus-visible {
368
+ outline: 2px solid var(--ax-border-focus);
369
+ outline-offset: -4px;
370
+ border-radius: var(--ax-radius-8);
371
+ }
372
+
373
+ .aksel-data-table__th-resize-handle:after {
374
+ content: "";
375
+ inset-block: 0;
376
+ border-radius: var(--ax-radius-full);
377
+ width: 3px;
378
+ height: 75%;
379
+ transition: background 50ms linear;
380
+ position: absolute;
381
+ top: 50%;
382
+ transform: translateY(-50%);
383
+ }
384
+
385
+ .aksel-data-table__th-resize-handle:hover, .aksel-data-table__th-resize-handle:focus-visible, .aksel-data-table__th-resize-handle:active {
386
+ z-index: 3;
387
+ }
388
+
389
+ .aksel-data-table__th-resize-handle:hover:after {
390
+ background: var(--ax-bg-strong);
391
+ }
392
+
393
+ .aksel-data-table__th-resize-handle:active:after, .aksel-data-table__th-resize-handle:focus-visible:after {
394
+ background: var(--ax-bg-strong-pressed);
395
+ }
396
+
397
+ .aksel-data-table__column-header:last-of-type .aksel-data-table__th-resize-handle {
398
+ width: 15px;
399
+ inset-inline-end: 0;
400
+ }
401
+
402
+ .aksel-data-table__column-header:last-of-type .aksel-data-table__th-resize-handle:after {
403
+ inset-inline-end: 0;
404
+ }
405
+
406
+ .aksel-data-table__th-resize-handle[data-active="true"] .aksel-data-table__th-resize-handle-indicator {
407
+ color: var(--ax-bg-strong);
408
+ height: 1.5rem;
409
+ position: absolute;
410
+ top: 50%;
411
+ transform: translateY(-50%);
412
+ }
413
+
414
+ .aksel-data-table__th-resize-handle[data-active="true"] .aksel-data-table__th-resize-handle-indicator:first-child {
415
+ right: 12px;
416
+ }
417
+
418
+ .aksel-data-table__th-resize-handle[data-active="true"] .aksel-data-table__th-resize-handle-indicator:last-child {
419
+ left: 12px;
420
+ }
421
+
422
+ .aksel-data-table__th-resize-handle[data-active="true"]:after {
423
+ background: var(--ax-bg-strong);
424
+ }
425
+
426
+ .aksel-data-table__th-resize-handle[data-active="true"]:focus-visible, .aksel-data-table__th-resize-handle[data-active="true"]:focus, .aksel-data-table__th-resize-handle[data-active="true"]:active {
427
+ outline: none;
428
+ }
429
+
430
+ .aksel-data-table__th-action-button {
431
+ transition: opacity .1s ease-in-out, width .1s ease-in-out, min-width .1s ease-in-out, max-width .1s ease-in-out, padding .1s ease-in-out;
432
+ }
433
+
434
+ .aksel-data-table__th-action-button:focus-visible {
435
+ transition: none;
436
+ }
437
+
438
+ .aksel-data-table__th-action-button:not(.aksel-data-table__th:is(:hover, :focus-within) .aksel-data-table__th-action-button, .aksel-data-table__th-action-button:focus-visible, .aksel-data-table__th-action-button[data-expanded="true"]), .aksel-data-table__th:has(.aksel-data-table__th-resize-handle:hover:not(:focus)) .aksel-data-table__th-action-button {
439
+ opacity: 0;
440
+ min-width: 0;
441
+ max-width: 0;
442
+ padding: 0;
443
+ overflow: hidden;
444
+ }
445
+
446
+ .aksel-data-table__th {
447
+ scroll-margin-block: var(--ax-space-0);
448
+ scroll-margin-inline: var(--ax-space-0);
449
+ }
450
+
451
+ .aksel-data-table__th:focus-visible, .aksel-data-table__th:has(.aksel-data-table__th-sort-button:focus) {
452
+ outline: 2px solid var(--ax-border-focus);
453
+ outline-offset: -4px;
454
+ }
455
+
456
+ .aksel-data-table__th[data-cell-type="action"] {
457
+ padding: 0;
458
+ }
459
+
460
+ .aksel-data-table__th[data-cell-type="action"] > .aksel-data-table__cell-content {
461
+ place-content: center;
462
+ display: grid;
463
+ }
464
+
465
+ .aksel-data-table__tfoot {
466
+ background-color: var(--ax-bg-raised);
467
+ }
468
+
469
+ .aksel-data-table__filler-cell {
470
+ width: auto;
471
+ padding: 0;
472
+ display: table-cell;
473
+ }
474
+
475
+ .aksel-data-table__drag-and-drop-root {
476
+ margin: 0;
477
+ padding: 0;
478
+ }
479
+
480
+ .aksel-data-drag-and-drop__drag-handler__button {
481
+ background: none;
482
+ border: none;
483
+ height: 1.5rem;
484
+ padding: 0;
485
+ position: relative;
486
+ }
487
+
488
+ .aksel-data-drag-and-drop__drag-handler__button:hover {
489
+ cursor: grab;
490
+ }
491
+
492
+ .aksel-data-drag-and-drop__drag-handler__button:focus-visible, .aksel-data-drag-and-drop__drag-handler__button[data-drag-handler-active="true"] {
493
+ outline: 2px solid var(--ax-border-focus);
494
+ outline-offset: -1px;
495
+ border-radius: var(--ax-radius-8);
496
+ }
497
+
498
+ .aksel-data-table__drag-and-drop-item[data-overlay="true"] {
499
+ opacity: .8;
500
+ width: 100%;
501
+ box-shadow: var(--ax-shadow-dialog);
502
+ background-color: var(--ax-bg-default);
503
+ }
504
+
505
+ .aksel-data-table__drag-and-drop-item[data-drop-target="true"]:not([data-overlay="true"]) {
506
+ background: var(--ax-bg-neutral-moderate);
507
+ }
508
+
509
+ .aksel-data-drag-and-drop__drag-handler {
510
+ height: 1.5rem;
511
+ position: relative;
512
+ }
513
+
514
+ .aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow {
515
+ background: var(--ax-bg-default);
516
+ cursor: pointer;
517
+ z-index: 1;
518
+ border: none;
519
+ border-radius: 50%;
520
+ height: 1.8rem;
521
+ padding: 0;
522
+ position: absolute;
523
+ left: 50%;
524
+ transform: translate(-50%, -50%);
525
+ }
526
+
527
+ .aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow[data-direction="up"] {
528
+ top: -18px;
529
+ }
530
+
531
+ .aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow[data-direction="down"] {
532
+ bottom: calc(-100% - 22px);
533
+ }
534
+
535
+ .aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow:disabled {
536
+ opacity: .8;
537
+ cursor: not-allowed;
538
+ }
539
+
540
+ .aksel-data-table__empty-state {
541
+ padding-block: var(--ax-space-32);
542
+ padding-inline: var(--ax-space-16);
543
+ text-align: center;
544
+ place-content: center;
545
+ gap: var(--ax-space-8);
546
+ justify-items: center;
547
+ display: grid;
548
+ }
549
+
550
+ .aksel-data-table__loading-state {
551
+ padding-block: var(--ax-space-32);
552
+ padding-inline: var(--ax-space-16);
553
+ text-align: center;
554
+ place-content: center;
555
+ gap: var(--ax-space-8);
556
+ justify-items: center;
557
+ display: grid;
558
+ position: relative;
559
+ }
560
+
561
+ @keyframes animateDataTableLoading {
562
+ 0% {
563
+ inline-size: 0;
564
+ inset-inline-start: 0;
565
+ }
566
+
567
+ 20% {
568
+ inline-size: 40%;
569
+ inset-inline-start: 0;
570
+ }
571
+
572
+ 80% {
573
+ inline-size: 40%;
574
+ inset-inline-start: 60%;
575
+ }
576
+
577
+ 100% {
578
+ inline-size: 0;
579
+ inset-inline-start: 100%;
580
+ }
581
+ }
582
+
583
+ .aksel-data-table tr .aksel-checkbox {
584
+ padding: 0;
585
+ }
586
+
587
+ .aksel-data-table tr .aksel-checkbox:focus-within:after {
588
+ inset: 0;
589
+ }
590
+
591
+ html[data-dragging-cursor="true"], html[data-dragging-cursor="true"] *, html[data-dragging-cursor="true"] :before, html[data-dragging-cursor="true"] :after {
592
+ cursor: grabbing !important;
593
+ }
594
+
595
+ .aksel-data-table__nested-toggle {
596
+ inset-block: 0;
597
+ left: calc(var(--__axc-data-table-pi-cell) + var(--__axc-data-table-nested-depth) * var(--ax-space-16));
598
+ align-items: center;
599
+ display: flex;
600
+ position: absolute;
601
+ }
602
+
603
+ .aksel-data-table__details-panel-row {
604
+ box-shadow: inset 1px 1px 0 0 var(--ax-border-neutral-subtle);
605
+ }
606
+
607
+ .aksel-data-table__details-panel-row-cell:focus-visible {
608
+ outline: 2px solid var(--ax-border-focus);
609
+ outline-offset: -4px;
610
+ }
611
+ }
612
+
613
+ @layer aksel.layout;
@@ -0,0 +1 @@
1
+ @layer aksel.reset,aksel.theming,aksel.baseline,aksel.print,aksel.typography,aksel.components.core,aksel.components.core.loader,aksel.components.core.button,aksel.components.form;@layer aksel.components.modules{.aksel-data-grid{flex-direction:column;flex-grow:1;width:100%;display:flex;overflow:hidden}.aksel-data-table__border-wrapper{max-height:100%;display:flex}.aksel-data-table__scroll-wrapper{scroll-timeline:--horizontal-table-scroll inline;width:100%;position:relative;overflow:auto}.aksel-data-table[data-layout=fixed]{table-layout:fixed;width:1px;min-width:100%}.aksel-data-table[data-layout=auto]{min-width:100%}.aksel-data-table{--__axc-data-table-text-size: var(--ax-font-size-large);--__axc-data-table-density: var(--ax-space-12)}.aksel-data-table[data-text-size=small]{--__axc-data-table-text-size: var(--ax-font-size-medium)}.aksel-data-table[data-density=tight]{--__axc-data-table-density: var(--ax-space-6)}.aksel-data-table[data-density=loose]{--__axc-data-table-density: var(--ax-space-20)}.aksel-data-table[data-zebra-stripes=true] .aksel-data-table__tbody :where(.aksel-data-table__tr:nth-child(odd)){background-color:var(--ax-bg-neutral-softA)}.aksel-data-table__thead{background-color:var(--ax-bg-raised);box-shadow:0 1px 0 0 var(--ax-border-neutral-subtle);position:relative}.aksel-data-table[data-loading=true] .aksel-data-table__thead:after{content:"";background-color:var(--ax-bg-strong);z-index:11;block-size:2px;animation:1s linear infinite animateDataTableLoading;position:absolute}.aksel-data-table__thead[data-sticky=true]{z-index:3;position:sticky;top:0}.aksel-data-table__tbody{background-color:var(--ax-bg-raised);position:relative}.aksel-data-table__tbody[inert]{opacity:var(--ax-opacity-disabled)}.aksel-data-table__tbody[inert]:after{content:"";background-color:var(--ax-bg-overlay);z-index:2;opacity:.2;position:absolute;inset:0}.aksel-data-table__tr[data-selected=true]{background-color:var(--ax-bg-softA)}.aksel-data-table__border-wrapper{border-radius:var(--ax-radius-12);position:relative;overflow:hidden}.aksel-data-table__border-wrapper:after{content:"";pointer-events:none;border:1px solid var(--ax-border-neutral-subtle);border-radius:var(--ax-radius-12);z-index:3;position:absolute;inset:0}.aksel-data-table{border-collapse:collapse;border-spacing:0;border-right:1px solid var(--ax-border-neutral-subtle);border-bottom:1px solid var(--ax-border-neutral-subtle)}@keyframes scroll-shadow-fade-start{0%{opacity:0}10%,to{opacity:1}}@keyframes scroll-shadow-fade-end{90%{opacity:1}to{opacity:0}}.aksel-data-table__cell{box-shadow:inset 1px 1px 0 0 var(--ax-border-neutral-subtle);text-align:start;vertical-align:middle;scroll-margin:var(--ax-space-0);font-size:var(--__axc-data-table-text-size);padding:0}.aksel-data-table__cell:not(.aksel-data-table__column-header){overflow:hidden}.aksel-data-table__cell[data-nested=true]{position:relative}.aksel-data-table__cell[data-nested=true]>.aksel-data-table__cell-content{margin-inline-start:calc(32px + 8px + calc(var(--__axc-data-table-nested-depth) * var(--ax-space-16)))}.aksel-data-table__thead .aksel-data-table__cell{background-color:var(--ax-bg-neutral-soft)}.aksel-data-table__cell[data-align=left]{text-align:start}.aksel-data-table__cell[data-align=center]{text-align:center}.aksel-data-table__cell[data-align=right]{text-align:end}.aksel-data-table__cell[data-sticky]{z-index:1;position:sticky}.aksel-data-table__cell[data-sticky]:after{content:"";pointer-events:none;border-color:var(--ax-border-neutral-subtle);border-style:solid;border-width:0;position:absolute;inset-block:0}.aksel-data-table__cell[data-sticky][data-sticky=start]{left:0}.aksel-data-table__cell[data-sticky][data-sticky=start][data-sticky-last]:before{content:"";pointer-events:none;width:100%;height:100%;box-shadow:4px 0 8px 1px var(--ax-border-neutral-subtleA);clip-path:inset(0 -24px 0 0);opacity:0;position:absolute;inset:0}.aksel-data-table[data-scroll] .aksel-data-table__cell[data-sticky][data-sticky=start][data-sticky-last]:before{opacity:1;animation:1s linear scroll-shadow-fade-start;animation-timeline:--horizontal-table-scroll}.aksel-data-table__cell[data-sticky][data-sticky=start][data-sticky-last]:after{border-right-width:1px;inset-inline:0 -1px}.aksel-data-table__cell[data-sticky][data-sticky=end]{right:0}.aksel-data-table__cell[data-sticky][data-sticky=end]:before{content:"";pointer-events:none;width:100%;height:100%;box-shadow:-4px 0 8px 1px var(--ax-border-neutral-subtleA);clip-path:inset(0 0 0 -24px);opacity:0;position:absolute;inset:0}.aksel-data-table[data-scroll] .aksel-data-table__cell[data-sticky][data-sticky=end]:before{opacity:1;animation:1s linear scroll-shadow-fade-end;animation-timeline:--horizontal-table-scroll}.aksel-data-table__cell[data-sticky]{background-color:var(--ax-bg-raised)}.aksel-data-table__tr[data-selected=true] .aksel-data-table__cell[data-sticky]{background-color:var(--ax-bg-soft)}.aksel-data-table__thead .aksel-data-table__cell[data-sticky]{background-color:var(--ax-bg-neutral-soft)}.aksel-data-table__cell:focus-visible,.aksel-data-table__cell:has(.aksel-data-table__th-sort-button:focus){outline:2px solid var(--ax-border-focus);outline-offset:-4px}.aksel-data-table__cell[data-cell-type=action]{padding:0}.aksel-data-table__cell[data-cell-type=action]>.aksel-data-table__cell-content{place-content:center;display:grid}.aksel-data-table__cell{--__axc-data-table-pi-cell: var(--ax-space-16)}.aksel-data-table__cell:not([data-cell-type=action])>.aksel-data-table__cell-content{padding-block:var(--__axc-data-table-density);padding-inline:var(--__axc-data-table-pi-cell);overflow:hidden}.aksel-data-table[data-truncate-content=true] :is(.aksel-data-table__cell:not([data-cell-type=action])>.aksel-data-table__cell-content){text-overflow:ellipsis;white-space:nowrap}.aksel-data-table__column-header{--__axc-data-table-density: var(--ax-space-8);font-weight:var(--ax-font-weight-bold);position:relative}.aksel-data-table__column-header:has(.aksel-data-table__th-sort-button:hover:not(:disabled)){background-color:var(--ax-bg-neutral-moderate-hover)}.aksel-data-table__column-header:has(.aksel-data-table__th-sort-button:active:not(:disabled)){background-color:var(--ax-bg-neutral-moderate-pressed)}.aksel-data-table__column-header[data-sortable=true]{block-size:calc(var(--__axc-data-table-density) + 1.5rem);padding:0}.aksel-data-table__th-sort-button{align-items:center;gap:var(--ax-space-2);block-size:calc(var(--__axc-data-table-density) + 1.5rem);cursor:pointer;text-align:start;width:100%;font-weight:inherit;background-color:#0000;border:none;padding:0;display:flex}.aksel-data-table__th-sort-button:focus-visible{outline:none}.aksel-data-table__th-sort-button:disabled{color:inherit;cursor:default}.aksel-data-table__th-sort-icon{flex-shrink:0;margin-left:auto}.aksel-data-table__th-sort-icon[data-sort-direction=none]{visibility:hidden}.aksel-data-table__th-sort-button:is(:hover,:focus-visible,:focus-within):not(:disabled) .aksel-data-table__th-sort-icon{visibility:visible}.aksel-data-table[data-layout=fixed] .aksel-data-table__th-sort-icon[data-sort-direction=none]{display:none}.aksel-data-table[data-layout=fixed] .aksel-data-table__th-sort-button:is(:hover,:focus-visible,:focus-within) .aksel-data-table__th-sort-icon{display:block}.aksel-data-table__th-content{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.aksel-data-table__th-resize-handle{z-index:1;cursor:col-resize;background:none;border:none;justify-content:center;width:19px;margin:0;padding:0;display:flex;position:absolute;inset-block:0;inset-inline-end:-10px}.aksel-data-table__th-resize-handle:focus-visible{outline:2px solid var(--ax-border-focus);outline-offset:-4px;border-radius:var(--ax-radius-8)}.aksel-data-table__th-resize-handle:after{content:"";inset-block:0;border-radius:var(--ax-radius-full);width:3px;height:75%;transition:background 50ms linear;position:absolute;top:50%;transform:translateY(-50%)}.aksel-data-table__th-resize-handle:hover,.aksel-data-table__th-resize-handle:focus-visible,.aksel-data-table__th-resize-handle:active{z-index:3}.aksel-data-table__th-resize-handle:hover:after{background:var(--ax-bg-strong)}.aksel-data-table__th-resize-handle:active:after,.aksel-data-table__th-resize-handle:focus-visible:after{background:var(--ax-bg-strong-pressed)}.aksel-data-table__column-header:last-of-type .aksel-data-table__th-resize-handle{width:15px;inset-inline-end:0}.aksel-data-table__column-header:last-of-type .aksel-data-table__th-resize-handle:after{inset-inline-end:0}.aksel-data-table__th-resize-handle[data-active=true] .aksel-data-table__th-resize-handle-indicator{color:var(--ax-bg-strong);height:1.5rem;position:absolute;top:50%;transform:translateY(-50%)}.aksel-data-table__th-resize-handle[data-active=true] .aksel-data-table__th-resize-handle-indicator:first-child{right:12px}.aksel-data-table__th-resize-handle[data-active=true] .aksel-data-table__th-resize-handle-indicator:last-child{left:12px}.aksel-data-table__th-resize-handle[data-active=true]:after{background:var(--ax-bg-strong)}.aksel-data-table__th-resize-handle[data-active=true]:focus-visible,.aksel-data-table__th-resize-handle[data-active=true]:focus,.aksel-data-table__th-resize-handle[data-active=true]:active{outline:none}.aksel-data-table__th-action-button{transition:opacity .1s ease-in-out,width .1s ease-in-out,min-width .1s ease-in-out,max-width .1s ease-in-out,padding .1s ease-in-out}.aksel-data-table__th-action-button:focus-visible{transition:none}.aksel-data-table__th-action-button:not(.aksel-data-table__th:is(:hover,:focus-within) .aksel-data-table__th-action-button,.aksel-data-table__th-action-button:focus-visible,.aksel-data-table__th-action-button[data-expanded=true]),.aksel-data-table__th:has(.aksel-data-table__th-resize-handle:hover:not(:focus)) .aksel-data-table__th-action-button{opacity:0;min-width:0;max-width:0;padding:0;overflow:hidden}.aksel-data-table__th{scroll-margin-block:var(--ax-space-0);scroll-margin-inline:var(--ax-space-0)}.aksel-data-table__th:focus-visible,.aksel-data-table__th:has(.aksel-data-table__th-sort-button:focus){outline:2px solid var(--ax-border-focus);outline-offset:-4px}.aksel-data-table__th[data-cell-type=action]{padding:0}.aksel-data-table__th[data-cell-type=action]>.aksel-data-table__cell-content{place-content:center;display:grid}.aksel-data-table__tfoot{background-color:var(--ax-bg-raised)}.aksel-data-table__filler-cell{width:auto;padding:0;display:table-cell}.aksel-data-table__drag-and-drop-root{margin:0;padding:0}.aksel-data-drag-and-drop__drag-handler__button{background:none;border:none;height:1.5rem;padding:0;position:relative}.aksel-data-drag-and-drop__drag-handler__button:hover{cursor:grab}.aksel-data-drag-and-drop__drag-handler__button:focus-visible,.aksel-data-drag-and-drop__drag-handler__button[data-drag-handler-active=true]{outline:2px solid var(--ax-border-focus);outline-offset:-1px;border-radius:var(--ax-radius-8)}.aksel-data-table__drag-and-drop-item[data-overlay=true]{opacity:.8;width:100%;box-shadow:var(--ax-shadow-dialog);background-color:var(--ax-bg-default)}.aksel-data-table__drag-and-drop-item[data-drop-target=true]:not([data-overlay=true]){background:var(--ax-bg-neutral-moderate)}.aksel-data-drag-and-drop__drag-handler{height:1.5rem;position:relative}.aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow{background:var(--ax-bg-default);cursor:pointer;z-index:1;border:none;border-radius:50%;height:1.8rem;padding:0;position:absolute;left:50%;transform:translate(-50%,-50%)}.aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow[data-direction=up]{top:-18px}.aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow[data-direction=down]{bottom:calc(-100% - 22px)}.aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow:disabled{opacity:.8;cursor:not-allowed}.aksel-data-table__empty-state{padding-block:var(--ax-space-32);padding-inline:var(--ax-space-16);text-align:center;place-content:center;gap:var(--ax-space-8);justify-items:center;display:grid}.aksel-data-table__loading-state{padding-block:var(--ax-space-32);padding-inline:var(--ax-space-16);text-align:center;place-content:center;gap:var(--ax-space-8);justify-items:center;display:grid;position:relative}@keyframes animateDataTableLoading{0%{inline-size:0;inset-inline-start:0}20%{inline-size:40%;inset-inline-start:0}80%{inline-size:40%;inset-inline-start:60%}to{inline-size:0;inset-inline-start:100%}}.aksel-data-table tr .aksel-checkbox{padding:0}.aksel-data-table tr .aksel-checkbox:focus-within:after{inset:0}html[data-dragging-cursor=true],html[data-dragging-cursor=true] *,html[data-dragging-cursor=true] :before,html[data-dragging-cursor=true] :after{cursor:grabbing!important}.aksel-data-table__nested-toggle{inset-block:0;left:calc(var(--__axc-data-table-pi-cell) + var(--__axc-data-table-nested-depth) * var(--ax-space-16));align-items:center;display:flex;position:absolute}.aksel-data-table__details-panel-row{box-shadow:inset 1px 1px 0 0 var(--ax-border-neutral-subtle)}.aksel-data-table__details-panel-row-cell:focus-visible{outline:2px solid var(--ax-border-focus);outline-offset:-4px}}@layer aksel.layout;