@navikt/ds-css 8.10.5 → 8.11.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.
package/dist/index.css CHANGED
@@ -646,7 +646,7 @@
646
646
  }
647
647
 
648
648
  :root, :host {
649
- --ax-version: "8.10.5";
649
+ --ax-version: "8.11.0";
650
650
  --ax-space-0: 0rem;
651
651
  --ax-space-1: .0625rem;
652
652
  --ax-space-2: .125rem;
@@ -4234,7 +4234,7 @@
4234
4234
  color: var(--ax-text-default);
4235
4235
  align-items: flex-start;
4236
4236
  gap: var(--ax-space-8);
4237
- padding: var(--ax-space-12) var(--ax-space-16);
4237
+ padding: var(--ax-space-16) var(--ax-space-20);
4238
4238
  display: flex;
4239
4239
  }
4240
4240
 
@@ -4242,6 +4242,10 @@
4242
4242
  margin-top: var(--ax-space-2);
4243
4243
  }
4244
4244
 
4245
+ .aksel-base-alert[data-size="small"] .aksel-base-alert__message {
4246
+ padding: var(--ax-space-12) var(--ax-space-16);
4247
+ }
4248
+
4245
4249
  .aksel-base-alert[data-size="small"] .aksel-base-alert__message > .aksel-base-alert__icon {
4246
4250
  margin-top: 0;
4247
4251
  }
@@ -4687,6 +4691,633 @@
4687
4691
  }
4688
4692
  }
4689
4693
 
4694
+ .aksel-data-grid {
4695
+ flex-direction: column;
4696
+ flex-grow: 1;
4697
+ width: 100%;
4698
+ display: flex;
4699
+ overflow: hidden;
4700
+ }
4701
+
4702
+ .aksel-data-table__border-wrapper {
4703
+ max-height: 100%;
4704
+ display: flex;
4705
+ }
4706
+
4707
+ .aksel-data-table__scroll-wrapper {
4708
+ scroll-timeline: --horizontal-table-scroll inline;
4709
+ width: 100%;
4710
+ position: relative;
4711
+ overflow: auto;
4712
+ }
4713
+
4714
+ .aksel-data-table[data-layout="fixed"] {
4715
+ table-layout: fixed;
4716
+ width: 1px;
4717
+ min-width: 100%;
4718
+ }
4719
+
4720
+ .aksel-data-table[data-layout="auto"] {
4721
+ min-width: 100%;
4722
+ }
4723
+
4724
+ .aksel-data-table {
4725
+ --__axc-data-table-text-size: var(--ax-font-size-large);
4726
+ --__axc-data-table-density: var(--ax-space-12);
4727
+ }
4728
+
4729
+ .aksel-data-table[data-text-size="small"] {
4730
+ --__axc-data-table-text-size: var(--ax-font-size-medium);
4731
+ }
4732
+
4733
+ .aksel-data-table[data-density="tight"] {
4734
+ --__axc-data-table-density: var(--ax-space-6);
4735
+ }
4736
+
4737
+ .aksel-data-table[data-density="loose"] {
4738
+ --__axc-data-table-density: var(--ax-space-20);
4739
+ }
4740
+
4741
+ .aksel-data-table[data-zebra-stripes="true"] .aksel-data-table__tbody :where(.aksel-data-table__tr:nth-child(odd)) {
4742
+ background-color: var(--ax-bg-neutral-softA);
4743
+ }
4744
+
4745
+ .aksel-data-table__thead {
4746
+ background-color: var(--ax-bg-raised);
4747
+ }
4748
+
4749
+ .aksel-data-table[data-loading="true"] .aksel-data-table__thead:after {
4750
+ content: "";
4751
+ background-color: var(--ax-bg-strong);
4752
+ z-index: 11;
4753
+ block-size: 2px;
4754
+ animation: 1s linear infinite animateDataTableLoading;
4755
+ position: absolute;
4756
+ inset-block-end: -2px;
4757
+ }
4758
+
4759
+ .aksel-data-table__tbody {
4760
+ background-color: var(--ax-bg-raised);
4761
+ position: relative;
4762
+ }
4763
+
4764
+ .aksel-data-table__tbody[inert] {
4765
+ opacity: var(--ax-opacity-disabled);
4766
+ transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
4767
+ }
4768
+
4769
+ @starting-style {
4770
+ .aksel-data-table__tbody[inert] {
4771
+ opacity: .001;
4772
+ }
4773
+ }
4774
+
4775
+ .aksel-data-table__tbody[inert]:after {
4776
+ content: "";
4777
+ background-color: var(--ax-bg-overlay);
4778
+ z-index: 10;
4779
+ opacity: .2;
4780
+ transition: opacity .2s cubic-bezier(.25, .46, .45, .94);
4781
+ position: absolute;
4782
+ inset: 0;
4783
+ }
4784
+
4785
+ @starting-style {
4786
+ .aksel-data-table__tbody[inert]:after {
4787
+ opacity: .001;
4788
+ }
4789
+ }
4790
+
4791
+ .aksel-data-table__tr[data-selected="true"] {
4792
+ background-color: var(--ax-bg-softA);
4793
+ }
4794
+
4795
+ .aksel-data-table__thead .aksel-data-table__tr[data-sticky="true"] {
4796
+ z-index: 3;
4797
+ box-shadow: 1px 1px 0 0 var(--ax-border-neutral-subtle);
4798
+ position: sticky;
4799
+ top: 0;
4800
+ }
4801
+
4802
+ .aksel-data-table__border-wrapper {
4803
+ border-radius: var(--ax-radius-12);
4804
+ position: relative;
4805
+ overflow: hidden;
4806
+ }
4807
+
4808
+ .aksel-data-table__border-wrapper:after {
4809
+ content: "";
4810
+ pointer-events: none;
4811
+ border: 1px solid var(--ax-border-neutral-subtle);
4812
+ border-radius: var(--ax-radius-12);
4813
+ z-index: 3;
4814
+ position: absolute;
4815
+ inset: 0;
4816
+ }
4817
+
4818
+ .aksel-data-table {
4819
+ border-collapse: collapse;
4820
+ border-spacing: 0;
4821
+ border-right: 1px solid var(--ax-border-neutral-subtle);
4822
+ border-bottom: 1px solid var(--ax-border-neutral-subtle);
4823
+ }
4824
+
4825
+ .aksel-data-table__thead {
4826
+ box-shadow: 0 1px 0 0 var(--ax-border-neutral-subtle);
4827
+ position: relative;
4828
+ }
4829
+
4830
+ @keyframes scroll-shadow-fade-start {
4831
+ 0% {
4832
+ opacity: 0;
4833
+ }
4834
+
4835
+ 10%, 100% {
4836
+ opacity: 1;
4837
+ }
4838
+ }
4839
+
4840
+ @keyframes scroll-shadow-fade-end {
4841
+ 90% {
4842
+ opacity: 1;
4843
+ }
4844
+
4845
+ 100% {
4846
+ opacity: 0;
4847
+ }
4848
+ }
4849
+
4850
+ .aksel-data-table__cell {
4851
+ box-shadow: inset 1px 1px 0 0 var(--ax-border-neutral-subtle);
4852
+ text-align: start;
4853
+ vertical-align: middle;
4854
+ scroll-margin: var(--ax-space-0);
4855
+ font-size: var(--__axc-data-table-text-size);
4856
+ padding: 0;
4857
+ }
4858
+
4859
+ .aksel-data-table__cell:not(.aksel-data-table__column-header) {
4860
+ overflow: hidden;
4861
+ }
4862
+
4863
+ .aksel-data-table__cell[data-nested="true"] {
4864
+ position: relative;
4865
+ }
4866
+
4867
+ .aksel-data-table__cell[data-nested="true"] > .aksel-data-table__cell-content {
4868
+ margin-inline-start: calc(32px + 8px + calc(var(--__axc-data-table-nested-depth) * var(--ax-space-16)));
4869
+ }
4870
+
4871
+ .aksel-data-table__thead .aksel-data-table__cell {
4872
+ background-color: var(--ax-bg-neutral-soft);
4873
+ }
4874
+
4875
+ .aksel-data-table__cell[data-align="left"] {
4876
+ text-align: start;
4877
+ }
4878
+
4879
+ .aksel-data-table__cell[data-align="center"] {
4880
+ text-align: center;
4881
+ }
4882
+
4883
+ .aksel-data-table__cell[data-align="right"] {
4884
+ text-align: end;
4885
+ }
4886
+
4887
+ .aksel-data-table__cell[data-sticky] {
4888
+ z-index: 1;
4889
+ position: sticky;
4890
+ }
4891
+
4892
+ .aksel-data-table__cell[data-sticky]:after {
4893
+ content: "";
4894
+ pointer-events: none;
4895
+ border-color: var(--ax-border-neutral-subtle);
4896
+ border-style: solid;
4897
+ border-width: 0;
4898
+ position: absolute;
4899
+ inset-block: 0;
4900
+ }
4901
+
4902
+ .aksel-data-table__cell[data-sticky][data-sticky="start"] {
4903
+ left: 0;
4904
+ }
4905
+
4906
+ .aksel-data-table__cell[data-sticky][data-sticky="start"][data-sticky-last]:before {
4907
+ content: "";
4908
+ pointer-events: none;
4909
+ width: 100%;
4910
+ height: 100%;
4911
+ box-shadow: 4px 0 8px 1px var(--ax-border-neutral-subtleA);
4912
+ clip-path: inset(0 -24px 0 0);
4913
+ opacity: 0;
4914
+ position: absolute;
4915
+ inset: 0;
4916
+ }
4917
+
4918
+ .aksel-data-table[data-scroll] .aksel-data-table__cell[data-sticky][data-sticky="start"][data-sticky-last]:before {
4919
+ opacity: 1;
4920
+ animation: 1s linear scroll-shadow-fade-start;
4921
+ animation-timeline: --horizontal-table-scroll;
4922
+ }
4923
+
4924
+ .aksel-data-table__cell[data-sticky][data-sticky="start"][data-sticky-last]:after {
4925
+ border-right-width: 1px;
4926
+ inset-inline: 0 -1px;
4927
+ }
4928
+
4929
+ .aksel-data-table__cell[data-sticky][data-sticky="end"] {
4930
+ right: 0;
4931
+ }
4932
+
4933
+ .aksel-data-table__cell[data-sticky][data-sticky="end"]:before {
4934
+ content: "";
4935
+ pointer-events: none;
4936
+ width: 100%;
4937
+ height: 100%;
4938
+ box-shadow: -4px 0 8px 1px var(--ax-border-neutral-subtleA);
4939
+ clip-path: inset(0 0 0 -24px);
4940
+ opacity: 0;
4941
+ position: absolute;
4942
+ inset: 0;
4943
+ }
4944
+
4945
+ .aksel-data-table[data-scroll] .aksel-data-table__cell[data-sticky][data-sticky="end"]:before {
4946
+ opacity: 1;
4947
+ animation: 1s linear scroll-shadow-fade-end;
4948
+ animation-timeline: --horizontal-table-scroll;
4949
+ }
4950
+
4951
+ .aksel-data-table__cell[data-sticky] {
4952
+ background-color: var(--ax-bg-raised);
4953
+ }
4954
+
4955
+ .aksel-data-table__tr[data-selected="true"] .aksel-data-table__cell[data-sticky] {
4956
+ background-color: var(--ax-bg-soft);
4957
+ }
4958
+
4959
+ .aksel-data-table__thead .aksel-data-table__cell[data-sticky] {
4960
+ background-color: var(--ax-bg-neutral-soft);
4961
+ }
4962
+
4963
+ .aksel-data-table__cell:focus-visible, .aksel-data-table__cell:has(.aksel-data-table__th-sort-button:focus) {
4964
+ outline: 2px solid var(--ax-border-focus);
4965
+ outline-offset: -4px;
4966
+ }
4967
+
4968
+ .aksel-data-table__cell[data-cell-type="action"] {
4969
+ padding: 0;
4970
+ }
4971
+
4972
+ .aksel-data-table__cell[data-cell-type="action"] > .aksel-data-table__cell-content {
4973
+ place-content: center;
4974
+ display: grid;
4975
+ }
4976
+
4977
+ .aksel-data-table__cell {
4978
+ --__axc-data-table-pi-cell: var(--ax-space-16);
4979
+ }
4980
+
4981
+ .aksel-data-table__cell:not([data-cell-type="action"]) > .aksel-data-table__cell-content {
4982
+ padding-block: var(--__axc-data-table-density);
4983
+ padding-inline: var(--__axc-data-table-pi-cell);
4984
+ overflow: hidden;
4985
+ }
4986
+
4987
+ .aksel-data-table[data-truncate-content="true"] :is(.aksel-data-table__cell:not([data-cell-type="action"]) > .aksel-data-table__cell-content) {
4988
+ text-overflow: ellipsis;
4989
+ white-space: nowrap;
4990
+ }
4991
+
4992
+ .aksel-data-table__column-header {
4993
+ --__axc-data-table-density: var(--ax-space-8);
4994
+ font-weight: var(--ax-font-weight-bold);
4995
+ position: relative;
4996
+ }
4997
+
4998
+ .aksel-data-table__column-header:has(.aksel-data-table__th-sort-button:hover:not(:disabled)) {
4999
+ background-color: var(--ax-bg-neutral-moderate-hover);
5000
+ }
5001
+
5002
+ .aksel-data-table__column-header:has(.aksel-data-table__th-sort-button:active:not(:disabled)) {
5003
+ background-color: var(--ax-bg-neutral-moderate-pressed);
5004
+ }
5005
+
5006
+ .aksel-data-table__column-header[data-sortable="true"] {
5007
+ block-size: calc(var(--__axc-data-table-density) + 1.5rem);
5008
+ padding: 0;
5009
+ }
5010
+
5011
+ .aksel-data-table__th-sort-button {
5012
+ align-items: center;
5013
+ gap: var(--ax-space-2);
5014
+ block-size: calc(var(--__axc-data-table-density) + 1.5rem);
5015
+ cursor: pointer;
5016
+ text-align: start;
5017
+ width: 100%;
5018
+ font-weight: inherit;
5019
+ background-color: rgba(0, 0, 0, 0);
5020
+ border: none;
5021
+ padding: 0;
5022
+ display: flex;
5023
+ }
5024
+
5025
+ .aksel-data-table__th-sort-button:focus-visible {
5026
+ outline: none;
5027
+ }
5028
+
5029
+ .aksel-data-table__th-sort-button:disabled {
5030
+ color: inherit;
5031
+ cursor: default;
5032
+ }
5033
+
5034
+ .aksel-data-table__th-sort-icon {
5035
+ flex-shrink: 0;
5036
+ margin-left: auto;
5037
+ }
5038
+
5039
+ .aksel-data-table__th-sort-icon[data-sort-direction="none"] {
5040
+ visibility: hidden;
5041
+ }
5042
+
5043
+ .aksel-data-table__th-sort-button:is(:hover, :focus-visible, :focus-within):not(:disabled) .aksel-data-table__th-sort-icon {
5044
+ visibility: visible;
5045
+ }
5046
+
5047
+ .aksel-data-table[data-layout="fixed"] .aksel-data-table__th-sort-icon[data-sort-direction="none"] {
5048
+ display: none;
5049
+ }
5050
+
5051
+ .aksel-data-table[data-layout="fixed"] .aksel-data-table__th-sort-button:is(:hover, :focus-visible, :focus-within) .aksel-data-table__th-sort-icon {
5052
+ display: block;
5053
+ }
5054
+
5055
+ .aksel-data-table__th-content {
5056
+ text-overflow: ellipsis;
5057
+ white-space: nowrap;
5058
+ overflow: hidden;
5059
+ }
5060
+
5061
+ .aksel-data-table__th-resize-handle {
5062
+ z-index: 1;
5063
+ cursor: col-resize;
5064
+ background: none;
5065
+ border: none;
5066
+ justify-content: center;
5067
+ width: 19px;
5068
+ margin: 0;
5069
+ padding: 0;
5070
+ display: flex;
5071
+ position: absolute;
5072
+ inset-block: 0;
5073
+ inset-inline-end: -10px;
5074
+ }
5075
+
5076
+ .aksel-data-table__th-resize-handle:focus-visible {
5077
+ outline: 2px solid var(--ax-border-focus);
5078
+ outline-offset: -4px;
5079
+ border-radius: var(--ax-radius-8);
5080
+ }
5081
+
5082
+ .aksel-data-table__th-resize-handle:after {
5083
+ content: "";
5084
+ inset-block: 0;
5085
+ border-radius: var(--ax-radius-full);
5086
+ width: 3px;
5087
+ height: 75%;
5088
+ transition: background 50ms linear;
5089
+ position: absolute;
5090
+ top: 50%;
5091
+ transform: translateY(-50%);
5092
+ }
5093
+
5094
+ .aksel-data-table__th-resize-handle:hover, .aksel-data-table__th-resize-handle:focus-visible, .aksel-data-table__th-resize-handle:active {
5095
+ z-index: 3;
5096
+ }
5097
+
5098
+ .aksel-data-table__th-resize-handle:hover:after {
5099
+ background: var(--ax-bg-strong);
5100
+ }
5101
+
5102
+ .aksel-data-table__th-resize-handle:active:after, .aksel-data-table__th-resize-handle:focus-visible:after {
5103
+ background: var(--ax-bg-strong-pressed);
5104
+ }
5105
+
5106
+ .aksel-data-table__column-header:last-of-type .aksel-data-table__th-resize-handle {
5107
+ width: 15px;
5108
+ inset-inline-end: 0;
5109
+ }
5110
+
5111
+ .aksel-data-table__column-header:last-of-type .aksel-data-table__th-resize-handle:after {
5112
+ inset-inline-end: 0;
5113
+ }
5114
+
5115
+ .aksel-data-table__th-resize-handle[data-active="true"] .aksel-data-table__th-resize-handle-indicator {
5116
+ color: var(--ax-bg-strong);
5117
+ height: 1.5rem;
5118
+ position: absolute;
5119
+ top: 50%;
5120
+ transform: translateY(-50%);
5121
+ }
5122
+
5123
+ .aksel-data-table__th-resize-handle[data-active="true"] .aksel-data-table__th-resize-handle-indicator:first-child {
5124
+ right: 12px;
5125
+ }
5126
+
5127
+ .aksel-data-table__th-resize-handle[data-active="true"] .aksel-data-table__th-resize-handle-indicator:last-child {
5128
+ left: 12px;
5129
+ }
5130
+
5131
+ .aksel-data-table__th-resize-handle[data-active="true"]:after {
5132
+ background: var(--ax-bg-strong);
5133
+ }
5134
+
5135
+ .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 {
5136
+ outline: none;
5137
+ }
5138
+
5139
+ .aksel-data-table__th-action-button {
5140
+ 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;
5141
+ }
5142
+
5143
+ .aksel-data-table__th-action-button:focus-visible {
5144
+ transition: none;
5145
+ }
5146
+
5147
+ .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 {
5148
+ opacity: 0;
5149
+ min-width: 0;
5150
+ max-width: 0;
5151
+ padding: 0;
5152
+ overflow: hidden;
5153
+ }
5154
+
5155
+ .aksel-data-table__th {
5156
+ scroll-margin-block: var(--ax-space-0);
5157
+ scroll-margin-inline: var(--ax-space-0);
5158
+ }
5159
+
5160
+ .aksel-data-table__th:focus-visible, .aksel-data-table__th:has(.aksel-data-table__th-sort-button:focus) {
5161
+ outline: 2px solid var(--ax-border-focus);
5162
+ outline-offset: -4px;
5163
+ }
5164
+
5165
+ .aksel-data-table__th[data-cell-type="action"] {
5166
+ padding: 0;
5167
+ }
5168
+
5169
+ .aksel-data-table__th[data-cell-type="action"] > .aksel-data-table__cell-content {
5170
+ place-content: center;
5171
+ display: grid;
5172
+ }
5173
+
5174
+ .aksel-data-table__tfoot {
5175
+ background-color: var(--ax-bg-raised);
5176
+ }
5177
+
5178
+ .aksel-data-table__filler-cell {
5179
+ width: auto;
5180
+ padding: 0;
5181
+ display: table-cell;
5182
+ }
5183
+
5184
+ .aksel-data-table__drag-and-drop-root {
5185
+ margin: 0;
5186
+ padding: 0;
5187
+ }
5188
+
5189
+ .aksel-data-drag-and-drop__drag-handler__button {
5190
+ background: none;
5191
+ border: none;
5192
+ height: 1.5rem;
5193
+ padding: 0;
5194
+ position: relative;
5195
+ }
5196
+
5197
+ .aksel-data-drag-and-drop__drag-handler__button:hover {
5198
+ cursor: grab;
5199
+ }
5200
+
5201
+ .aksel-data-drag-and-drop__drag-handler__button:focus-visible, .aksel-data-drag-and-drop__drag-handler__button[data-drag-handler-active="true"] {
5202
+ outline: 2px solid var(--ax-border-focus);
5203
+ outline-offset: -1px;
5204
+ border-radius: var(--ax-radius-8);
5205
+ }
5206
+
5207
+ .aksel-data-table__drag-and-drop-item[data-overlay="true"] {
5208
+ opacity: .8;
5209
+ width: 100%;
5210
+ box-shadow: var(--ax-shadow-dialog);
5211
+ background-color: var(--ax-bg-default);
5212
+ }
5213
+
5214
+ .aksel-data-table__drag-and-drop-item[data-drop-target="true"]:not([data-overlay="true"]) {
5215
+ background: var(--ax-bg-neutral-moderate);
5216
+ }
5217
+
5218
+ .aksel-data-drag-and-drop__drag-handler {
5219
+ height: 1.5rem;
5220
+ position: relative;
5221
+ }
5222
+
5223
+ .aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow {
5224
+ background: var(--ax-bg-default);
5225
+ cursor: pointer;
5226
+ z-index: 1;
5227
+ border: none;
5228
+ border-radius: 50%;
5229
+ height: 1.8rem;
5230
+ padding: 0;
5231
+ position: absolute;
5232
+ left: 50%;
5233
+ transform: translate(-50%, -50%);
5234
+ }
5235
+
5236
+ .aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow[data-direction="up"] {
5237
+ top: -18px;
5238
+ }
5239
+
5240
+ .aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow[data-direction="down"] {
5241
+ bottom: calc(-100% - 22px);
5242
+ }
5243
+
5244
+ .aksel-data-drag-and-drop__drag-handler .aksel-data-drag-and-drop__drag-handler__arrow:disabled {
5245
+ opacity: .8;
5246
+ cursor: not-allowed;
5247
+ }
5248
+
5249
+ .aksel-data-table__empty-state {
5250
+ padding-block: var(--ax-space-32);
5251
+ padding-inline: var(--ax-space-16);
5252
+ text-align: center;
5253
+ place-content: center;
5254
+ gap: var(--ax-space-8);
5255
+ justify-items: center;
5256
+ display: grid;
5257
+ }
5258
+
5259
+ .aksel-data-table__loading-state {
5260
+ padding-block: var(--ax-space-32);
5261
+ padding-inline: var(--ax-space-16);
5262
+ text-align: center;
5263
+ place-content: center;
5264
+ gap: var(--ax-space-8);
5265
+ justify-items: center;
5266
+ display: grid;
5267
+ position: relative;
5268
+ }
5269
+
5270
+ @keyframes animateDataTableLoading {
5271
+ 0% {
5272
+ inline-size: 0;
5273
+ inset-inline-start: 0;
5274
+ }
5275
+
5276
+ 20% {
5277
+ inline-size: 40%;
5278
+ inset-inline-start: 0;
5279
+ }
5280
+
5281
+ 80% {
5282
+ inline-size: 40%;
5283
+ inset-inline-start: 60%;
5284
+ }
5285
+
5286
+ 100% {
5287
+ inline-size: 0;
5288
+ inset-inline-start: 100%;
5289
+ }
5290
+ }
5291
+
5292
+ .aksel-data-table tr .aksel-checkbox {
5293
+ padding: 0;
5294
+ }
5295
+
5296
+ .aksel-data-table tr .aksel-checkbox:focus-within:after {
5297
+ inset: 0;
5298
+ }
5299
+
5300
+ html[data-dragging-cursor="true"], html[data-dragging-cursor="true"] *, html[data-dragging-cursor="true"] :before, html[data-dragging-cursor="true"] :after {
5301
+ cursor: grabbing !important;
5302
+ }
5303
+
5304
+ .aksel-data-table__nested-toggle {
5305
+ inset-block: 0;
5306
+ left: calc(var(--__axc-data-table-pi-cell) + var(--__axc-data-table-nested-depth) * var(--ax-space-16));
5307
+ align-items: center;
5308
+ display: flex;
5309
+ position: absolute;
5310
+ }
5311
+
5312
+ .aksel-data-table__details-panel-row {
5313
+ box-shadow: inset 1px 1px 0 0 var(--ax-border-neutral-subtle);
5314
+ }
5315
+
5316
+ .aksel-data-table__details-panel-row-cell:focus-visible {
5317
+ outline: 2px solid var(--ax-border-focus);
5318
+ outline-offset: -4px;
5319
+ }
5320
+
4690
5321
  .aksel-dialog__popup {
4691
5322
  --__axc-dialog-transform: ;
4692
5323
  --__axc-dialog-p-b: var(--ax-space-16);