@itwin/itwinui-css 0.63.1 → 0.63.2-dev.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.
Files changed (95) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/css/alert.css +250 -248
  3. package/css/all.css +9975 -9928
  4. package/css/anchor.css +58 -56
  5. package/css/backdrop.css +21 -19
  6. package/css/badge.css +26 -24
  7. package/css/blockquote.css +26 -24
  8. package/css/breadcrumbs.css +384 -382
  9. package/css/button.css +462 -460
  10. package/css/carousel.css +119 -117
  11. package/css/code.css +87 -85
  12. package/css/color-picker.css +221 -219
  13. package/css/date-picker.css +449 -447
  14. package/css/dialog.css +153 -151
  15. package/css/expandable-block.css +209 -207
  16. package/css/fieldset.css +33 -31
  17. package/css/file-upload.css +100 -98
  18. package/css/footer.css +87 -85
  19. package/css/global.css +462 -460
  20. package/css/header.css +484 -482
  21. package/css/icon.css +163 -161
  22. package/css/information-panel.css +190 -188
  23. package/css/inputs.css +1257 -1255
  24. package/css/keyboard.css +34 -32
  25. package/css/location-marker.css +110 -108
  26. package/css/menu.css +168 -166
  27. package/css/non-ideal-state.css +62 -60
  28. package/css/notification-marker.css +246 -244
  29. package/css/popover.css +11 -9
  30. package/css/progress-indicator.css +379 -377
  31. package/css/radio-tile.css +184 -182
  32. package/css/reset-global-styles.css +35 -33
  33. package/css/side-navigation.css +209 -207
  34. package/css/skip-to-content.css +55 -53
  35. package/css/slider.css +240 -238
  36. package/css/surface.css +14 -12
  37. package/css/table.css +710 -708
  38. package/css/tabs.css +339 -337
  39. package/css/tag.css +142 -140
  40. package/css/text.css +102 -100
  41. package/css/tile.css +544 -542
  42. package/css/time-picker.css +125 -123
  43. package/css/toast-notification.css +301 -299
  44. package/css/toggle-switch.css +237 -235
  45. package/css/tooltip.css +53 -51
  46. package/css/tree.css +137 -135
  47. package/css/user-icon.css +242 -240
  48. package/css/wizard.css +182 -180
  49. package/package.json +1 -1
  50. package/scss/alert/classes.scss +7 -5
  51. package/scss/anchor/classes.scss +6 -4
  52. package/scss/backdrop/classes.scss +4 -2
  53. package/scss/badge/classes.scss +4 -2
  54. package/scss/blockquote/classes.scss +4 -2
  55. package/scss/breadcrumbs/classes.scss +22 -20
  56. package/scss/button/classes.scss +47 -45
  57. package/scss/carousel/classes.scss +10 -8
  58. package/scss/code/classes.scss +7 -5
  59. package/scss/color-picker/classes.scss +40 -38
  60. package/scss/date-picker/classes.scss +44 -42
  61. package/scss/dialog/classes.scss +45 -43
  62. package/scss/expandable-block/classes.scss +4 -2
  63. package/scss/fieldset/classes.scss +4 -2
  64. package/scss/file-upload/classes.scss +4 -2
  65. package/scss/footer/classes.scss +16 -14
  66. package/scss/header/classes.scss +7 -5
  67. package/scss/icon/classes.scss +19 -17
  68. package/scss/information-panel/classes.scss +18 -16
  69. package/scss/inputs/classes.scss +62 -60
  70. package/scss/keyboard/classes.scss +4 -2
  71. package/scss/location-marker/classes.scss +10 -8
  72. package/scss/menu/classes.scss +14 -12
  73. package/scss/non-ideal-state/classes.scss +4 -2
  74. package/scss/notification-marker/classes.scss +5 -3
  75. package/scss/popover/classes.scss +4 -2
  76. package/scss/progress-indicator/classes.scss +22 -20
  77. package/scss/radio-tile/classes.scss +22 -20
  78. package/scss/reset-global-styles.scss +25 -23
  79. package/scss/side-navigation/classes.scss +10 -8
  80. package/scss/skip-to-content/classes.scss +4 -2
  81. package/scss/slider/classes.scss +37 -35
  82. package/scss/style/global.scss +49 -47
  83. package/scss/surface/classes.scss +4 -2
  84. package/scss/table/classes.scss +45 -43
  85. package/scss/tabs/classes.scss +31 -29
  86. package/scss/tag/classes.scss +20 -18
  87. package/scss/text/classes.scss +36 -34
  88. package/scss/tile/classes.scss +36 -34
  89. package/scss/time-picker/classes.scss +11 -9
  90. package/scss/toast-notification/classes.scss +71 -69
  91. package/scss/toggle-switch/classes.scss +7 -5
  92. package/scss/tooltip/classes.scss +17 -15
  93. package/scss/tree/classes.scss +13 -11
  94. package/scss/user-icon/classes.scss +18 -16
  95. package/scss/wizard/classes.scss +18 -16
package/css/table.css CHANGED
@@ -3,770 +3,772 @@
3
3
  * See LICENSE.md in the project root for license terms and full copyright notice.
4
4
  *--------------------------------------------------------------------------------------------*/
5
5
  @charset "UTF-8";
6
- .iui-table{
7
- margin:0;
8
- padding:0;
9
- border:none;
10
- vertical-align:baseline;
11
- display:flex;
12
- flex-direction:column;
13
- isolation:isolate;
14
- }
15
- .iui-table *{
16
- box-sizing:border-box;
17
- }
18
- .iui-table .iui-cell-end-icon,
6
+ @layer itwinui-v1{
7
+ .iui-table{
8
+ margin:0;
9
+ padding:0;
10
+ border:none;
11
+ vertical-align:baseline;
12
+ display:flex;
13
+ flex-direction:column;
14
+ isolation:isolate;
15
+ }
16
+ .iui-table *{
17
+ box-sizing:border-box;
18
+ }
19
+ .iui-table .iui-cell-end-icon,
19
20
  .iui-table .iui-cell-start-icon{
20
- flex-shrink:0;
21
- display:flex;
22
- align-items:center;
23
- justify-content:center;
24
- }
25
- .iui-table .iui-cell-end-icon svg:not(.iui-radial),
21
+ flex-shrink:0;
22
+ display:flex;
23
+ align-items:center;
24
+ justify-content:center;
25
+ }
26
+ .iui-table .iui-cell-end-icon svg:not(.iui-radial),
26
27
  .iui-table .iui-cell-start-icon svg:not(.iui-radial){
27
- display:flex;
28
- width:16px;
29
- height:16px;
30
- }
31
- .iui-table .iui-cell-start-icon{
32
- margin-right:8px;
33
- }
34
- .iui-table .iui-cell-end-icon{
35
- width:24px;
36
- height:24px;
37
- margin-right:12px;
38
- margin-left:auto;
39
- }
40
- .iui-table.iui-condensed .iui-table-header .iui-cell,
28
+ display:flex;
29
+ width:16px;
30
+ height:16px;
31
+ }
32
+ .iui-table .iui-cell-start-icon{
33
+ margin-right:8px;
34
+ }
35
+ .iui-table .iui-cell-end-icon{
36
+ width:24px;
37
+ height:24px;
38
+ margin-right:12px;
39
+ margin-left:auto;
40
+ }
41
+ .iui-table.iui-condensed .iui-table-header .iui-cell,
41
42
  .iui-table.iui-condensed .iui-paginator{
42
- min-height:44px;
43
- }
44
- .iui-table.iui-condensed .iui-row .iui-cell{
45
- min-height:46px;
46
- }
47
- .iui-table.iui-extra-condensed .iui-table-header .iui-cell,
43
+ min-height:44px;
44
+ }
45
+ .iui-table.iui-condensed .iui-row .iui-cell{
46
+ min-height:46px;
47
+ }
48
+ .iui-table.iui-extra-condensed .iui-table-header .iui-cell,
48
49
  .iui-table.iui-extra-condensed .iui-paginator{
49
- min-height:33px;
50
- }
51
- .iui-table.iui-extra-condensed .iui-row .iui-cell{
52
- min-height:35px;
53
- }
54
- .iui-table.iui-extra-condensed .iui-table-header .iui-cell{
55
- padding-block:2.75px;
56
- }
50
+ min-height:33px;
51
+ }
52
+ .iui-table.iui-extra-condensed .iui-row .iui-cell{
53
+ min-height:35px;
54
+ }
55
+ .iui-table.iui-extra-condensed .iui-table-header .iui-cell{
56
+ padding-block:2.75px;
57
+ }
57
58
 
58
- .iui-table-header-wrapper{
59
- overflow:hidden;
60
- display:flex;
61
- flex-shrink:0;
62
- }
63
- @supports not (overflow: overlay){
64
59
  .iui-table-header-wrapper{
65
- overflow-y:scroll;
60
+ overflow:hidden;
61
+ display:flex;
62
+ flex-shrink:0;
63
+ }
64
+ @supports not (overflow: overlay){
65
+ .iui-table-header-wrapper{
66
+ overflow-y:scroll;
67
+ }
66
68
  }
67
- }
68
69
 
69
- .iui-table-header{
70
- display:flex;
71
- -webkit-user-select:none;
72
- -moz-user-select:none;
73
- -ms-user-select:none;
74
- user-select:none;
75
- min-width:100%;
76
- flex-shrink:0;
77
- }
78
- .iui-table-header .iui-row{
79
- display:flex;
80
- flex-grow:1;
81
- min-width:100%;
82
- }
83
- .iui-table-header .iui-cell{
84
- min-height:55px;
85
- background-color:#edeff2;
86
- background-color:var(--iui-color-background-3);
87
- }
88
- .iui-table-header .iui-cell:not(.iui-slot){
89
- -moz-column-gap:4px;
90
- column-gap:4px;
91
- padding-block:5.5px;
92
- }
93
- .iui-table-header .iui-cell:not(.iui-slot):focus-visible{
94
- outline:1px solid var(--iui-color-foreground-primary);
95
- outline-offset:-1px;
96
- }
97
- @supports not selector(*:focus-visible){
98
- .iui-table-header .iui-cell:not(.iui-slot):focus{
70
+ .iui-table-header{
71
+ display:flex;
72
+ -webkit-user-select:none;
73
+ -moz-user-select:none;
74
+ -ms-user-select:none;
75
+ user-select:none;
76
+ min-width:100%;
77
+ flex-shrink:0;
78
+ }
79
+ .iui-table-header .iui-row{
80
+ display:flex;
81
+ flex-grow:1;
82
+ min-width:100%;
83
+ }
84
+ .iui-table-header .iui-cell{
85
+ min-height:55px;
86
+ background-color:#edeff2;
87
+ background-color:var(--iui-color-background-3);
88
+ }
89
+ .iui-table-header .iui-cell:not(.iui-slot){
90
+ -moz-column-gap:4px;
91
+ column-gap:4px;
92
+ padding-block:5.5px;
93
+ }
94
+ .iui-table-header .iui-cell:not(.iui-slot):focus-visible{
99
95
  outline:1px solid var(--iui-color-foreground-primary);
100
96
  outline-offset:-1px;
101
97
  }
102
- }
103
- .iui-table-header .iui-cell:not(.iui-slot).iui-actionable{
104
- cursor:pointer;
105
- }
106
- .iui-table-header .iui-cell:not(.iui-slot).iui-grabbing{
107
- cursor:-webkit-grabbing;
108
- cursor:grabbing;
109
- }
110
- .iui-table-header .iui-cell:not(.iui-slot) .iui-filter-button:not(.iui-active){
111
- visibility:hidden;
112
- }
113
- .iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer{
114
- height:100%;
115
- width:16px;
116
- position:absolute;
117
- top:0;
118
- right:0;
119
- transform:translateX(50%);
120
- touch-action:none;
121
- cursor:ew-resize;
122
- z-index:1;
123
- opacity:0;
124
- }
125
- .iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer > .iui-resizer-bar{
126
- height:100%;
127
- width:2px;
128
- margin:0 auto;
129
- background-color:#c7ccd1;
130
- background-color:var(--iui-color-background-border);
131
- }
132
- @media (prefers-reduced-motion: no-preference){
98
+ @supports not selector(*:focus-visible){
99
+ .iui-table-header .iui-cell:not(.iui-slot):focus{
100
+ outline:1px solid var(--iui-color-foreground-primary);
101
+ outline-offset:-1px;
102
+ }
103
+ }
104
+ .iui-table-header .iui-cell:not(.iui-slot).iui-actionable{
105
+ cursor:pointer;
106
+ }
107
+ .iui-table-header .iui-cell:not(.iui-slot).iui-grabbing{
108
+ cursor:-webkit-grabbing;
109
+ cursor:grabbing;
110
+ }
111
+ .iui-table-header .iui-cell:not(.iui-slot) .iui-filter-button:not(.iui-active){
112
+ visibility:hidden;
113
+ }
114
+ .iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer{
115
+ height:100%;
116
+ width:16px;
117
+ position:absolute;
118
+ top:0;
119
+ right:0;
120
+ transform:translateX(50%);
121
+ touch-action:none;
122
+ cursor:ew-resize;
123
+ z-index:1;
124
+ opacity:0;
125
+ }
133
126
  .iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer > .iui-resizer-bar{
134
- transition:background-color 0.2s ease-out, width 0.2s ease-out;
135
- }
136
- }
137
- .iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer:hover > .iui-resizer-bar{
138
- width:4px;
139
- background-color:#008ae0;
140
- background-color:var(--iui-color-foreground-primary);
141
- }
142
- .iui-table-header .iui-cell:not(.iui-slot):hover > .iui-resizer{
143
- opacity:1;
144
- }
145
- .iui-table-header .iui-cell:not(.iui-slot):hover, .iui-table-header .iui-cell:not(.iui-slot):focus, .iui-table-header .iui-cell:not(.iui-slot):focus-within{
146
- background-color:#dde1e4;
147
- background-color:var(--iui-color-background-4);
148
- }
149
- .iui-table-header .iui-cell:not(.iui-slot):hover .iui-sort,
127
+ height:100%;
128
+ width:2px;
129
+ margin:0 auto;
130
+ background-color:#c7ccd1;
131
+ background-color:var(--iui-color-background-border);
132
+ }
133
+ @media (prefers-reduced-motion: no-preference){
134
+ .iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer > .iui-resizer-bar{
135
+ transition:background-color 0.2s ease-out, width 0.2s ease-out;
136
+ }
137
+ }
138
+ .iui-table-header .iui-cell:not(.iui-slot) > .iui-resizer:hover > .iui-resizer-bar{
139
+ width:4px;
140
+ background-color:#008ae0;
141
+ background-color:var(--iui-color-foreground-primary);
142
+ }
143
+ .iui-table-header .iui-cell:not(.iui-slot):hover > .iui-resizer{
144
+ opacity:1;
145
+ }
146
+ .iui-table-header .iui-cell:not(.iui-slot):hover, .iui-table-header .iui-cell:not(.iui-slot):focus, .iui-table-header .iui-cell:not(.iui-slot):focus-within{
147
+ background-color:#dde1e4;
148
+ background-color:var(--iui-color-background-4);
149
+ }
150
+ .iui-table-header .iui-cell:not(.iui-slot):hover .iui-sort,
150
151
  .iui-table-header .iui-cell:not(.iui-slot):hover .iui-filter-button, .iui-table-header .iui-cell:not(.iui-slot):focus .iui-sort,
151
152
  .iui-table-header .iui-cell:not(.iui-slot):focus .iui-filter-button, .iui-table-header .iui-cell:not(.iui-slot):focus-within .iui-sort,
152
153
  .iui-table-header .iui-cell:not(.iui-slot):focus-within .iui-filter-button{
153
- visibility:visible;
154
- }
155
- .iui-table-header .iui-reorder-bar{
156
- position:absolute;
157
- height:100%;
158
- width:2px;
159
- }
160
- .iui-table-header .iui-reorder-column-right > .iui-reorder-bar{
161
- right:0;
162
- }
163
- .iui-table-header .iui-reorder-column-left > .iui-reorder-bar{
164
- left:0;
165
- }
166
- .iui-table-header .iui-reorder-column-left > .iui-reorder-bar,
154
+ visibility:visible;
155
+ }
156
+ .iui-table-header .iui-reorder-bar{
157
+ position:absolute;
158
+ height:100%;
159
+ width:2px;
160
+ }
161
+ .iui-table-header .iui-reorder-column-right > .iui-reorder-bar{
162
+ right:0;
163
+ }
164
+ .iui-table-header .iui-reorder-column-left > .iui-reorder-bar{
165
+ left:0;
166
+ }
167
+ .iui-table-header .iui-reorder-column-left > .iui-reorder-bar,
167
168
  .iui-table-header .iui-reorder-column-right > .iui-reorder-bar{
168
- background-color:#008ae0;
169
- background-color:var(--iui-color-foreground-primary);
170
- }
171
- .iui-table-header .iui-sort{
172
- visibility:hidden;
173
- fill:rgba(0, 0, 0, 0.4);
174
- fill:var(--iui-icons-color);
175
- }
176
- .iui-table-header .iui-sorted{
177
- background-color:#dde1e4;
178
- background-color:var(--iui-color-background-4);
179
- }
180
- .iui-table-header .iui-sorted .iui-sort{
181
- visibility:visible;
182
- fill:rgba(0, 0, 0, 0.8);
183
- fill:var(--iui-icons-color-actionable);
184
- }
169
+ background-color:#008ae0;
170
+ background-color:var(--iui-color-foreground-primary);
171
+ }
172
+ .iui-table-header .iui-sort{
173
+ visibility:hidden;
174
+ fill:rgba(0, 0, 0, 0.4);
175
+ fill:var(--iui-icons-color);
176
+ }
177
+ .iui-table-header .iui-sorted{
178
+ background-color:#dde1e4;
179
+ background-color:var(--iui-color-background-4);
180
+ }
181
+ .iui-table-header .iui-sorted .iui-sort{
182
+ visibility:visible;
183
+ fill:rgba(0, 0, 0, 0.8);
184
+ fill:var(--iui-icons-color-actionable);
185
+ }
185
186
 
186
- .iui-table-header-actions-container{
187
- display:flex;
188
- flex-grow:1;
189
- align-items:center;
190
- flex-wrap:wrap;
191
- justify-content:flex-end;
192
- margin-right:12px;
193
- }
194
- .iui-table-header-actions-container .iui-cell-end-icon{
195
- width:28px;
196
- height:28px;
197
- margin-right:initial;
198
- margin-left:auto;
199
- }
187
+ .iui-table-header-actions-container{
188
+ display:flex;
189
+ flex-grow:1;
190
+ align-items:center;
191
+ flex-wrap:wrap;
192
+ justify-content:flex-end;
193
+ margin-right:12px;
194
+ }
195
+ .iui-table-header-actions-container .iui-cell-end-icon{
196
+ width:28px;
197
+ height:28px;
198
+ margin-right:initial;
199
+ margin-left:auto;
200
+ }
200
201
 
201
- .iui-table-body{
202
- overflow-y:scroll;
203
- overflow:overlay;
204
- display:flex;
205
- flex-direction:column;
206
- flex-grow:1;
207
- align-items:flex-start;
208
- background-color:white;
209
- background-color:var(--iui-color-background-1);
210
- }
211
- .iui-table-body.iui-scroll-snapping{
212
- -ms-scroll-snap-type:y mandatory;
213
- scroll-snap-type:y mandatory;
214
- }
215
- .iui-table-body.iui-scroll-snapping .iui-row{
216
- scroll-snap-align:start none;
217
- }
218
- .iui-table-body.iui-zebra-striping .iui-row:nth-child(even):not(.iui-selected) .iui-cell{
219
- background:linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02)), linear-gradient(white, white);
220
- background:linear-gradient(rgba(var(--iui-color-foreground-body-rgb), 0.02), rgba(var(--iui-color-foreground-body-rgb), 0.02)), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
221
- }
222
- .iui-table-body .iui-row{
223
- min-width:100%;
224
- display:flex;
225
- }
226
- .iui-table-body .iui-row .iui-cell{
227
- border-top:solid 1px transparent;
228
- border-bottom:solid 1px transparent;
229
- border-bottom-color:#c7ccd1;
230
- border-bottom-color:var(--iui-color-background-border);
231
- background-color:white;
232
- background-color:var(--iui-color-background-1);
233
- }
234
- @media (prefers-reduced-motion: no-preference){
202
+ .iui-table-body{
203
+ overflow-y:scroll;
204
+ overflow:overlay;
205
+ display:flex;
206
+ flex-direction:column;
207
+ flex-grow:1;
208
+ align-items:flex-start;
209
+ background-color:white;
210
+ background-color:var(--iui-color-background-1);
211
+ }
212
+ .iui-table-body.iui-scroll-snapping{
213
+ -ms-scroll-snap-type:y mandatory;
214
+ scroll-snap-type:y mandatory;
215
+ }
216
+ .iui-table-body.iui-scroll-snapping .iui-row{
217
+ scroll-snap-align:start none;
218
+ }
219
+ .iui-table-body.iui-zebra-striping .iui-row:nth-child(even):not(.iui-selected) .iui-cell{
220
+ background:linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02)), linear-gradient(white, white);
221
+ background:linear-gradient(rgba(var(--iui-color-foreground-body-rgb), 0.02), rgba(var(--iui-color-foreground-body-rgb), 0.02)), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
222
+ }
223
+ .iui-table-body .iui-row{
224
+ min-width:100%;
225
+ display:flex;
226
+ }
235
227
  .iui-table-body .iui-row .iui-cell{
236
- transition:border 0.2s ease-out;
237
- }
238
- }
239
- .iui-table-body .iui-row > .iui-slot > .iui-more-options{
240
- visibility:hidden;
241
- }
242
- .iui-table-body .iui-row:hover:not(.iui-disabled) .iui-cell{
243
- background:linear-gradient(rgba(0, 138, 224, 0.1), rgba(0, 138, 224, 0.1)), linear-gradient(white, white);
244
- background:linear-gradient(rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
245
- }
246
- .iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot:not(.iui-disabled) > .iui-more-options{
247
- visibility:visible;
248
- }
249
- .iui-table-body .iui-row:focus-within > .iui-slot:not(.iui-disabled) > .iui-more-options{
250
- visibility:visible;
251
- }
252
- @media (prefers-reduced-motion: no-preference){
253
- .iui-table-body .iui-row .iui-row-expander > .iui-button-icon{
254
- transition:transform 0.2s ease-out;
255
- }
256
- }
257
- .iui-table-body .iui-row.iui-row-expanded{
258
- overflow:hidden;
259
- }
260
- .iui-table-body .iui-row.iui-row-expanded .iui-cell{
261
- border-left-color:#dde1e4;
262
- border-right-color:#dde1e4;
263
- border-left-color:var(--iui-color-background-4);
264
- border-right-color:var(--iui-color-background-4);
265
- border-bottom-color:transparent;
266
- }
267
- .iui-table-body .iui-row.iui-row-expanded .iui-row-expander > .iui-button-icon{
268
- transform:rotate(90deg);
269
- }
270
- .iui-table-body .iui-row.iui-row-expanded + .iui-expanded-content{
271
- border-left-color:#dde1e4;
272
- border-right-color:#dde1e4;
273
- border-left-color:var(--iui-color-background-4);
274
- border-right-color:var(--iui-color-background-4);
275
- }
276
- .iui-table-body .iui-row.iui-expanded-content{
277
- overflow:hidden;
278
- border-left:1px solid transparent;
279
- border-right:1px solid transparent;
280
- border-bottom:1px solid #c7ccd1;
281
- border-bottom:1px solid var(--iui-color-background-border);
282
- }
283
- .iui-table-body .iui-row.iui-expanded-content.iui-enter{
284
- opacity:0;
285
- }
286
- .iui-table-body .iui-row.iui-expanded-content.iui-enter-active{
287
- opacity:1;
288
- }
289
- @media (prefers-reduced-motion: no-preference){
228
+ border-top:solid 1px transparent;
229
+ border-bottom:solid 1px transparent;
230
+ border-bottom-color:#c7ccd1;
231
+ border-bottom-color:var(--iui-color-background-border);
232
+ background-color:white;
233
+ background-color:var(--iui-color-background-1);
234
+ }
235
+ @media (prefers-reduced-motion: no-preference){
236
+ .iui-table-body .iui-row .iui-cell{
237
+ transition:border 0.2s ease-out;
238
+ }
239
+ }
240
+ .iui-table-body .iui-row > .iui-slot > .iui-more-options{
241
+ visibility:hidden;
242
+ }
243
+ .iui-table-body .iui-row:hover:not(.iui-disabled) .iui-cell{
244
+ background:linear-gradient(rgba(0, 138, 224, 0.1), rgba(0, 138, 224, 0.1)), linear-gradient(white, white);
245
+ background:linear-gradient(rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
246
+ }
247
+ .iui-table-body .iui-row:hover:not(.iui-disabled) > .iui-slot:not(.iui-disabled) > .iui-more-options{
248
+ visibility:visible;
249
+ }
250
+ .iui-table-body .iui-row:focus-within > .iui-slot:not(.iui-disabled) > .iui-more-options{
251
+ visibility:visible;
252
+ }
253
+ @media (prefers-reduced-motion: no-preference){
254
+ .iui-table-body .iui-row .iui-row-expander > .iui-button-icon{
255
+ transition:transform 0.2s ease-out;
256
+ }
257
+ }
258
+ .iui-table-body .iui-row.iui-row-expanded{
259
+ overflow:hidden;
260
+ }
261
+ .iui-table-body .iui-row.iui-row-expanded .iui-cell{
262
+ border-left-color:#dde1e4;
263
+ border-right-color:#dde1e4;
264
+ border-left-color:var(--iui-color-background-4);
265
+ border-right-color:var(--iui-color-background-4);
266
+ border-bottom-color:transparent;
267
+ }
268
+ .iui-table-body .iui-row.iui-row-expanded .iui-row-expander > .iui-button-icon{
269
+ transform:rotate(90deg);
270
+ }
271
+ .iui-table-body .iui-row.iui-row-expanded + .iui-expanded-content{
272
+ border-left-color:#dde1e4;
273
+ border-right-color:#dde1e4;
274
+ border-left-color:var(--iui-color-background-4);
275
+ border-right-color:var(--iui-color-background-4);
276
+ }
277
+ .iui-table-body .iui-row.iui-expanded-content{
278
+ overflow:hidden;
279
+ border-left:1px solid transparent;
280
+ border-right:1px solid transparent;
281
+ border-bottom:1px solid #c7ccd1;
282
+ border-bottom:1px solid var(--iui-color-background-border);
283
+ }
284
+ .iui-table-body .iui-row.iui-expanded-content.iui-enter{
285
+ opacity:0;
286
+ }
290
287
  .iui-table-body .iui-row.iui-expanded-content.iui-enter-active{
291
- transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out;
292
- }
293
- }
294
- .iui-table-body .iui-row.iui-expanded-content.iui-exit{
295
- opacity:1;
296
- }
297
- .iui-table-body .iui-row.iui-expanded-content.iui-exit-active{
298
- opacity:0;
299
- }
300
- @media (prefers-reduced-motion: no-preference){
288
+ opacity:1;
289
+ }
290
+ @media (prefers-reduced-motion: no-preference){
291
+ .iui-table-body .iui-row.iui-expanded-content.iui-enter-active{
292
+ transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out;
293
+ }
294
+ }
295
+ .iui-table-body .iui-row.iui-expanded-content.iui-exit{
296
+ opacity:1;
297
+ }
301
298
  .iui-table-body .iui-row.iui-expanded-content.iui-exit-active{
302
- transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out;
303
- }
304
- }
305
- .iui-table-body .iui-row:not(.iui-selected) + .iui-selected .iui-cell, .iui-table-body .iui-row.iui-selected:first-child .iui-cell{
306
- border-bottom-color:transparent;
307
- }
308
- .iui-table-body .iui-row.iui-selected .iui-cell{
309
- border-color:#008ae0;
310
- background:linear-gradient(rgba(0, 138, 224, 0.1), rgba(0, 138, 224, 0.1)), linear-gradient(white, white);
311
- border-color:var(--iui-color-foreground-primary);
312
- background:linear-gradient(rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
313
- }
314
- .iui-table-body .iui-row.iui-selected + .iui-selected .iui-cell{
315
- border-bottom-color:transparent;
316
- border-top-color:rgba(0, 138, 224, 0.4);
317
- border-top-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
318
- }
319
- .iui-table-body .iui-row.iui-selected:last-child .iui-cell{
320
- border-bottom-color:#008ae0;
321
- border-bottom-color:var(--iui-color-foreground-primary);
322
- }
323
- .iui-table-body .iui-row.iui-selected + :not(.iui-selected) .iui-cell,
299
+ opacity:0;
300
+ }
301
+ @media (prefers-reduced-motion: no-preference){
302
+ .iui-table-body .iui-row.iui-expanded-content.iui-exit-active{
303
+ transition:opacity 0.2s ease-out, width 0.2s ease-out, height 0.2s ease-out;
304
+ }
305
+ }
306
+ .iui-table-body .iui-row:not(.iui-selected) + .iui-selected .iui-cell, .iui-table-body .iui-row.iui-selected:first-child .iui-cell{
307
+ border-bottom-color:transparent;
308
+ }
309
+ .iui-table-body .iui-row.iui-selected .iui-cell{
310
+ border-color:#008ae0;
311
+ background:linear-gradient(rgba(0, 138, 224, 0.1), rgba(0, 138, 224, 0.1)), linear-gradient(white, white);
312
+ border-color:var(--iui-color-foreground-primary);
313
+ background:linear-gradient(rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
314
+ }
315
+ .iui-table-body .iui-row.iui-selected + .iui-selected .iui-cell{
316
+ border-bottom-color:transparent;
317
+ border-top-color:rgba(0, 138, 224, 0.4);
318
+ border-top-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-4));
319
+ }
320
+ .iui-table-body .iui-row.iui-selected:last-child .iui-cell{
321
+ border-bottom-color:#008ae0;
322
+ border-bottom-color:var(--iui-color-foreground-primary);
323
+ }
324
+ .iui-table-body .iui-row.iui-selected + :not(.iui-selected) .iui-cell,
324
325
  .iui-table-body .iui-row.iui-selected + .iui-expanded-content + .iui-row:not(.iui-selected) .iui-cell{
325
- border-top-color:#008ae0;
326
- border-top-color:var(--iui-color-foreground-primary);
327
- }
328
- .iui-table-body .iui-row.iui-selected + .iui-expanded-content{
329
- border-color:transparent #008ae0;
330
- border-color:transparent var(--iui-color-foreground-primary);
331
- }
332
- .iui-table-body .iui-row.iui-selected + .iui-expanded-content:last-child{
333
- border-bottom-color:#008ae0;
334
- }
335
- .iui-table-body .iui-row.iui-selected + .iui-expanded-content:last-child{
336
- border-bottom-color:var(--iui-color-foreground-primary);
337
- }
338
- .iui-table-body .iui-row.iui-new{
339
- font-weight:600;
340
- }
341
- .iui-table-body .iui-row.iui-new > .iui-main-column::before{
342
- content:"•";
343
- position:absolute;
344
- left:0;
345
- font-size:24px;
346
- color:#53a21a;
347
- color:var(--iui-color-foreground-positive);
348
- }
349
- .iui-table-body .iui-row .iui-cell.iui-disabled, .iui-table-body .iui-row.iui-expanded-content.iui-disabled{
350
- font-style:italic;
351
- cursor:not-allowed;
352
- color:rgba(0, 0, 0, 0.4);
353
- color:var(--iui-text-color-muted);
354
- }
355
- .iui-table-body .iui-row .iui-cell.iui-disabled.iui-slot:hover > .iui-more-options, .iui-table-body .iui-row.iui-expanded-content.iui-disabled.iui-slot:hover > .iui-more-options{
356
- visibility:hidden;
357
- }
358
- .iui-table-body .iui-row .iui-cell.iui-disabled img,
326
+ border-top-color:#008ae0;
327
+ border-top-color:var(--iui-color-foreground-primary);
328
+ }
329
+ .iui-table-body .iui-row.iui-selected + .iui-expanded-content{
330
+ border-color:transparent #008ae0;
331
+ border-color:transparent var(--iui-color-foreground-primary);
332
+ }
333
+ .iui-table-body .iui-row.iui-selected + .iui-expanded-content:last-child{
334
+ border-bottom-color:#008ae0;
335
+ }
336
+ .iui-table-body .iui-row.iui-selected + .iui-expanded-content:last-child{
337
+ border-bottom-color:var(--iui-color-foreground-primary);
338
+ }
339
+ .iui-table-body .iui-row.iui-new{
340
+ font-weight:600;
341
+ }
342
+ .iui-table-body .iui-row.iui-new > .iui-main-column::before{
343
+ content:"•";
344
+ position:absolute;
345
+ left:0;
346
+ font-size:24px;
347
+ color:#53a21a;
348
+ color:var(--iui-color-foreground-positive);
349
+ }
350
+ .iui-table-body .iui-row .iui-cell.iui-disabled, .iui-table-body .iui-row.iui-expanded-content.iui-disabled{
351
+ font-style:italic;
352
+ cursor:not-allowed;
353
+ color:rgba(0, 0, 0, 0.4);
354
+ color:var(--iui-text-color-muted);
355
+ }
356
+ .iui-table-body .iui-row .iui-cell.iui-disabled.iui-slot:hover > .iui-more-options, .iui-table-body .iui-row.iui-expanded-content.iui-disabled.iui-slot:hover > .iui-more-options{
357
+ visibility:hidden;
358
+ }
359
+ .iui-table-body .iui-row .iui-cell.iui-disabled img,
359
360
  .iui-table-body .iui-row .iui-cell.iui-disabled svg:not(.iui-radial),
360
361
  .iui-table-body .iui-row .iui-cell.iui-disabled .iui-user-icon, .iui-table-body .iui-row.iui-expanded-content.iui-disabled img,
361
362
  .iui-table-body .iui-row.iui-expanded-content.iui-disabled svg:not(.iui-radial),
362
363
  .iui-table-body .iui-row.iui-expanded-content.iui-disabled .iui-user-icon{
363
- filter:grayscale(100%);
364
- }
365
- .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type,
364
+ filter:grayscale(100%);
365
+ }
366
+ .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type,
366
367
  .iui-table-body .iui-row.iui-positive + .iui-expanded-content{
367
- box-shadow:inset 2px 0 0 0 #53a21a;
368
- box-shadow:inset 2px 0 0 0 var(--iui-icons-color-positive);
369
- }
370
- .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content *::-moz-selection{
371
- background-color:rgba(83, 162, 26, 0.2);
372
- background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
373
- }
374
- .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type::selection,
368
+ box-shadow:inset 2px 0 0 0 #53a21a;
369
+ box-shadow:inset 2px 0 0 0 var(--iui-icons-color-positive);
370
+ }
371
+ .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-positive + .iui-expanded-content *::-moz-selection{
372
+ background-color:rgba(83, 162, 26, 0.2);
373
+ background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
374
+ }
375
+ .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type::selection,
375
376
  .iui-table-body .iui-row.iui-positive .iui-cell:first-of-type *::selection,
376
377
  .iui-table-body .iui-row.iui-positive + .iui-expanded-content::selection,
377
378
  .iui-table-body .iui-row.iui-positive + .iui-expanded-content *::selection{
378
- background-color:rgba(83, 162, 26, 0.2);
379
- background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
380
- }
381
- .iui-table-body .iui-row.iui-positive .iui-cell-end-icon svg{
382
- fill:#53a21a;
383
- fill:var(--iui-icons-color-positive);
384
- }
385
- .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type,
379
+ background-color:rgba(83, 162, 26, 0.2);
380
+ background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
381
+ }
382
+ .iui-table-body .iui-row.iui-positive .iui-cell-end-icon svg{
383
+ fill:#53a21a;
384
+ fill:var(--iui-icons-color-positive);
385
+ }
386
+ .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type,
386
387
  .iui-table-body .iui-row.iui-warning + .iui-expanded-content{
387
- box-shadow:inset 2px 0 0 0 #f18d13;
388
- box-shadow:inset 2px 0 0 0 var(--iui-icons-color-warning);
389
- }
390
- .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content *::-moz-selection{
391
- background-color:rgba(241, 141, 19, 0.2);
392
- background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
393
- }
394
- .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type::selection,
388
+ box-shadow:inset 2px 0 0 0 #f18d13;
389
+ box-shadow:inset 2px 0 0 0 var(--iui-icons-color-warning);
390
+ }
391
+ .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-warning + .iui-expanded-content *::-moz-selection{
392
+ background-color:rgba(241, 141, 19, 0.2);
393
+ background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
394
+ }
395
+ .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type::selection,
395
396
  .iui-table-body .iui-row.iui-warning .iui-cell:first-of-type *::selection,
396
397
  .iui-table-body .iui-row.iui-warning + .iui-expanded-content::selection,
397
398
  .iui-table-body .iui-row.iui-warning + .iui-expanded-content *::selection{
398
- background-color:rgba(241, 141, 19, 0.2);
399
- background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
400
- }
401
- .iui-table-body .iui-row.iui-warning .iui-cell-end-icon svg{
402
- fill:#f18d13;
403
- fill:var(--iui-icons-color-warning);
404
- }
405
- .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type,
399
+ background-color:rgba(241, 141, 19, 0.2);
400
+ background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
401
+ }
402
+ .iui-table-body .iui-row.iui-warning .iui-cell-end-icon svg{
403
+ fill:#f18d13;
404
+ fill:var(--iui-icons-color-warning);
405
+ }
406
+ .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type,
406
407
  .iui-table-body .iui-row.iui-negative + .iui-expanded-content{
407
- box-shadow:inset 2px 0 0 0 #d10a0a;
408
- box-shadow:inset 2px 0 0 0 var(--iui-icons-color-negative);
409
- }
410
- .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content *::-moz-selection{
411
- background-color:rgba(209, 10, 10, 0.2);
412
- background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
413
- }
414
- .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type::selection,
408
+ box-shadow:inset 2px 0 0 0 #d10a0a;
409
+ box-shadow:inset 2px 0 0 0 var(--iui-icons-color-negative);
410
+ }
411
+ .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type::-moz-selection, .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type *::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content::-moz-selection, .iui-table-body .iui-row.iui-negative + .iui-expanded-content *::-moz-selection{
412
+ background-color:rgba(209, 10, 10, 0.2);
413
+ background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
414
+ }
415
+ .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type::selection,
415
416
  .iui-table-body .iui-row.iui-negative .iui-cell:first-of-type *::selection,
416
417
  .iui-table-body .iui-row.iui-negative + .iui-expanded-content::selection,
417
418
  .iui-table-body .iui-row.iui-negative + .iui-expanded-content *::selection{
418
- background-color:rgba(209, 10, 10, 0.2);
419
- background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
420
- }
421
- .iui-table-body .iui-row.iui-negative .iui-cell-end-icon svg{
422
- fill:#d10a0a;
423
- fill:var(--iui-icons-color-negative);
424
- }
425
- .iui-table-body > .iui-table-empty{
426
- text-align:center;
427
- padding:32px;
428
- display:flex;
429
- flex-direction:column;
430
- justify-content:center;
431
- align-items:center;
432
- flex-grow:1;
433
- -ms-grid-row-align:center;
434
- align-self:center;
435
- color:rgba(0, 0, 0, 0.4);
436
- background-color:white;
437
- color:var(--iui-text-color-muted);
438
- background-color:var(--iui-color-background-1);
439
- }
419
+ background-color:rgba(209, 10, 10, 0.2);
420
+ background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
421
+ }
422
+ .iui-table-body .iui-row.iui-negative .iui-cell-end-icon svg{
423
+ fill:#d10a0a;
424
+ fill:var(--iui-icons-color-negative);
425
+ }
426
+ .iui-table-body > .iui-table-empty{
427
+ text-align:center;
428
+ padding:32px;
429
+ display:flex;
430
+ flex-direction:column;
431
+ justify-content:center;
432
+ align-items:center;
433
+ flex-grow:1;
434
+ -ms-grid-row-align:center;
435
+ align-self:center;
436
+ color:rgba(0, 0, 0, 0.4);
437
+ background-color:white;
438
+ color:var(--iui-text-color-muted);
439
+ background-color:var(--iui-color-background-1);
440
+ }
440
441
 
441
- .iui-cell{
442
- align-items:center;
443
- display:flex;
444
- flex-grow:1;
445
- min-width:64px;
446
- min-height:57px;
447
- padding-left:16px;
448
- flex-basis:64px;
449
- position:relative;
450
- word-break:break-word;
451
- }
452
- .iui-cell:first-of-type{
453
- border-left:solid 1px transparent;
454
- }
455
- .iui-cell:last-of-type{
456
- border-right:solid 1px transparent;
457
- }
458
- .iui-cell.iui-slot{
459
- width:48px;
460
- padding:0;
461
- flex-grow:0;
462
- min-width:0;
463
- display:flex;
464
- justify-content:center;
465
- align-items:center;
466
- flex-basis:48px;
467
- }
468
- .iui-cell.iui-cell-sticky{
469
- position:-webkit-sticky;
470
- position:sticky;
471
- z-index:1;
472
- left:var(--iui-table-sticky-left, initial);
473
- right:var(--iui-table-sticky-right, initial);
474
- }
475
- .iui-cell:not(.iui-slot):last-child{
476
- padding-right:16px;
477
- }
478
- .iui-cell.iui-positive{
479
- background:linear-gradient(rgba(83, 162, 26, 0.1), rgba(83, 162, 26, 0.1)), linear-gradient(white, white);
480
- background:linear-gradient(rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
481
- }
482
- .iui-cell.iui-positive::-moz-selection, .iui-cell.iui-positive *::-moz-selection{
483
- background-color:rgba(83, 162, 26, 0.2);
484
- background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
485
- }
486
- .iui-cell.iui-positive::selection,
442
+ .iui-cell{
443
+ align-items:center;
444
+ display:flex;
445
+ flex-grow:1;
446
+ min-width:64px;
447
+ min-height:57px;
448
+ padding-left:16px;
449
+ flex-basis:64px;
450
+ position:relative;
451
+ word-break:break-word;
452
+ }
453
+ .iui-cell:first-of-type{
454
+ border-left:solid 1px transparent;
455
+ }
456
+ .iui-cell:last-of-type{
457
+ border-right:solid 1px transparent;
458
+ }
459
+ .iui-cell.iui-slot{
460
+ width:48px;
461
+ padding:0;
462
+ flex-grow:0;
463
+ min-width:0;
464
+ display:flex;
465
+ justify-content:center;
466
+ align-items:center;
467
+ flex-basis:48px;
468
+ }
469
+ .iui-cell.iui-cell-sticky{
470
+ position:-webkit-sticky;
471
+ position:sticky;
472
+ z-index:1;
473
+ left:var(--iui-table-sticky-left, initial);
474
+ right:var(--iui-table-sticky-right, initial);
475
+ }
476
+ .iui-cell:not(.iui-slot):last-child{
477
+ padding-right:16px;
478
+ }
479
+ .iui-cell.iui-positive{
480
+ background:linear-gradient(rgba(83, 162, 26, 0.1), rgba(83, 162, 26, 0.1)), linear-gradient(white, white);
481
+ background:linear-gradient(rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
482
+ }
483
+ .iui-cell.iui-positive::-moz-selection, .iui-cell.iui-positive *::-moz-selection{
484
+ background-color:rgba(83, 162, 26, 0.2);
485
+ background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
486
+ }
487
+ .iui-cell.iui-positive::selection,
487
488
  .iui-cell.iui-positive *::selection{
488
- background-color:rgba(83, 162, 26, 0.2);
489
- background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
490
- }
491
- .iui-cell.iui-warning{
492
- background:linear-gradient(rgba(241, 141, 19, 0.1), rgba(241, 141, 19, 0.1)), linear-gradient(white, white);
493
- background:linear-gradient(rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
494
- }
495
- .iui-cell.iui-warning::-moz-selection, .iui-cell.iui-warning *::-moz-selection{
496
- background-color:rgba(241, 141, 19, 0.2);
497
- background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
498
- }
499
- .iui-cell.iui-warning::selection,
489
+ background-color:rgba(83, 162, 26, 0.2);
490
+ background-color:rgba(var(--iui-color-foreground-positive-rgb), var(--iui-opacity-5));
491
+ }
492
+ .iui-cell.iui-warning{
493
+ background:linear-gradient(rgba(241, 141, 19, 0.1), rgba(241, 141, 19, 0.1)), linear-gradient(white, white);
494
+ background:linear-gradient(rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
495
+ }
496
+ .iui-cell.iui-warning::-moz-selection, .iui-cell.iui-warning *::-moz-selection{
497
+ background-color:rgba(241, 141, 19, 0.2);
498
+ background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
499
+ }
500
+ .iui-cell.iui-warning::selection,
500
501
  .iui-cell.iui-warning *::selection{
501
- background-color:rgba(241, 141, 19, 0.2);
502
- background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
503
- }
504
- .iui-cell.iui-negative{
505
- background:linear-gradient(rgba(209, 10, 10, 0.1), rgba(209, 10, 10, 0.1)), linear-gradient(white, white);
506
- background:linear-gradient(rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
507
- }
508
- .iui-cell.iui-negative::-moz-selection, .iui-cell.iui-negative *::-moz-selection{
509
- background-color:rgba(209, 10, 10, 0.2);
510
- background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
511
- }
512
- .iui-cell.iui-negative::selection,
502
+ background-color:rgba(241, 141, 19, 0.2);
503
+ background-color:rgba(var(--iui-color-foreground-warning-rgb), var(--iui-opacity-5));
504
+ }
505
+ .iui-cell.iui-negative{
506
+ background:linear-gradient(rgba(209, 10, 10, 0.1), rgba(209, 10, 10, 0.1)), linear-gradient(white, white);
507
+ background:linear-gradient(rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-6)), rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-6))), linear-gradient(var(--iui-color-background-1), var(--iui-color-background-1));
508
+ }
509
+ .iui-cell.iui-negative::-moz-selection, .iui-cell.iui-negative *::-moz-selection{
510
+ background-color:rgba(209, 10, 10, 0.2);
511
+ background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
512
+ }
513
+ .iui-cell.iui-negative::selection,
513
514
  .iui-cell.iui-negative *::selection{
514
- background-color:rgba(209, 10, 10, 0.2);
515
- background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
516
- }
517
- .iui-cell[contenteditable]{
518
- outline-offset:-1px;
519
- }
520
- .iui-cell[contenteditable]:focus, .iui-cell[contenteditable]:hover{
521
- outline:1px solid #008ae0;
522
- outline:1px solid var(--iui-color-foreground-primary);
523
- }
524
- .iui-cell[contenteditable]:focus{
525
- background-color:white;
526
- background-color:var(--iui-color-background-1);
527
- }
515
+ background-color:rgba(209, 10, 10, 0.2);
516
+ background-color:rgba(var(--iui-color-foreground-negative-rgb), var(--iui-opacity-5));
517
+ }
518
+ .iui-cell[contenteditable]{
519
+ outline-offset:-1px;
520
+ }
521
+ .iui-cell[contenteditable]:focus, .iui-cell[contenteditable]:hover{
522
+ outline:1px solid #008ae0;
523
+ outline:1px solid var(--iui-color-foreground-primary);
524
+ }
525
+ .iui-cell[contenteditable]:focus{
526
+ background-color:white;
527
+ background-color:var(--iui-color-background-1);
528
+ }
528
529
 
529
- .iui-cell-shadow-left{
530
- position:absolute;
531
- top:-1px;
532
- bottom:-1px;
533
- width:24px;
534
- pointer-events:none;
535
- left:0;
536
- transform:translate(-100%);
537
- box-shadow:inset -10px 0 5px -10px rgba(0, 0, 0, 0.25);
538
- }
539
- .iui-table-header .iui-cell-shadow-left{
540
- top:0;
541
- bottom:0;
542
- }
530
+ .iui-cell-shadow-left{
531
+ position:absolute;
532
+ top:-1px;
533
+ bottom:-1px;
534
+ width:24px;
535
+ pointer-events:none;
536
+ left:0;
537
+ transform:translate(-100%);
538
+ box-shadow:inset -10px 0 5px -10px rgba(0, 0, 0, 0.25);
539
+ }
540
+ .iui-table-header .iui-cell-shadow-left{
541
+ top:0;
542
+ bottom:0;
543
+ }
543
544
 
544
- .iui-cell-shadow-right{
545
- position:absolute;
546
- top:-1px;
547
- bottom:-1px;
548
- width:24px;
549
- pointer-events:none;
550
- right:0;
551
- transform:translate(100%);
552
- box-shadow:inset 10px 0 5px -10px rgba(0, 0, 0, 0.25);
553
- }
554
- .iui-table-header .iui-cell-shadow-right{
555
- top:0;
556
- bottom:0;
557
- }
545
+ .iui-cell-shadow-right{
546
+ position:absolute;
547
+ top:-1px;
548
+ bottom:-1px;
549
+ width:24px;
550
+ pointer-events:none;
551
+ right:0;
552
+ transform:translate(100%);
553
+ box-shadow:inset 10px 0 5px -10px rgba(0, 0, 0, 0.25);
554
+ }
555
+ .iui-table-header .iui-cell-shadow-right{
556
+ top:0;
557
+ bottom:0;
558
+ }
558
559
 
559
- .iui-paginator{
560
- margin:0;
561
- padding:0;
562
- border:none;
563
- vertical-align:baseline;
564
- display:flex;
565
- justify-content:space-between;
566
- align-items:center;
567
- min-height:55px;
568
- padding:0 16px;
569
- -webkit-user-select:none;
570
- -moz-user-select:none;
571
- -ms-user-select:none;
572
- user-select:none;
573
- background-color:#edeff2;
574
- background-color:var(--iui-color-background-3);
575
- }
576
- .iui-paginator > .iui-left,
560
+ .iui-paginator{
561
+ margin:0;
562
+ padding:0;
563
+ border:none;
564
+ vertical-align:baseline;
565
+ display:flex;
566
+ justify-content:space-between;
567
+ align-items:center;
568
+ min-height:55px;
569
+ padding:0 16px;
570
+ -webkit-user-select:none;
571
+ -moz-user-select:none;
572
+ -ms-user-select:none;
573
+ user-select:none;
574
+ background-color:#edeff2;
575
+ background-color:var(--iui-color-background-3);
576
+ }
577
+ .iui-paginator > .iui-left,
577
578
  .iui-paginator > .iui-center,
578
579
  .iui-paginator > .iui-right{
579
- display:flex;
580
- align-items:center;
581
- position:relative;
582
- flex:1;
583
- min-width:0;
584
- }
585
- .iui-paginator > .iui-center{
586
- justify-content:center;
587
- flex:2 1;
588
- color:rgba(0, 0, 0, 0.8);
589
- color:var(--iui-text-color);
590
- }
591
- .iui-paginator > .iui-right{
592
- justify-content:flex-end;
593
- }
594
- .iui-paginator-page-size-label{
595
- color:rgba(0, 0, 0, 0.4);
596
- color:var(--iui-text-color-muted);
597
- white-space:nowrap;
598
- overflow:hidden;
599
- text-overflow:ellipsis;
600
- }
580
+ display:flex;
581
+ align-items:center;
582
+ position:relative;
583
+ flex:1;
584
+ min-width:0;
585
+ }
586
+ .iui-paginator > .iui-center{
587
+ justify-content:center;
588
+ flex:2 1;
589
+ color:rgba(0, 0, 0, 0.8);
590
+ color:var(--iui-text-color);
591
+ }
592
+ .iui-paginator > .iui-right{
593
+ justify-content:flex-end;
594
+ }
595
+ .iui-paginator-page-size-label{
596
+ color:rgba(0, 0, 0, 0.4);
597
+ color:var(--iui-text-color-muted);
598
+ white-space:nowrap;
599
+ overflow:hidden;
600
+ text-overflow:ellipsis;
601
+ }
601
602
 
602
- .iui-paginator-ellipsis{
603
- display:flex;
604
- justify-content:center;
605
- align-items:center;
606
- width:38px;
607
- color:rgba(0, 0, 0, 0.4);
608
- color:var(--iui-text-color-muted);
609
- }
610
- .iui-paginator-ellipsis-small{
611
- width:27px;
612
- }
603
+ .iui-paginator-ellipsis{
604
+ display:flex;
605
+ justify-content:center;
606
+ align-items:center;
607
+ width:38px;
608
+ color:rgba(0, 0, 0, 0.4);
609
+ color:var(--iui-text-color-muted);
610
+ }
611
+ .iui-paginator-ellipsis-small{
612
+ width:27px;
613
+ }
613
614
 
614
- .iui-paginator-pages-group{
615
- display:inline-flex;
616
- align-items:center;
617
- margin:0 8px;
618
- }
615
+ .iui-paginator-pages-group{
616
+ display:inline-flex;
617
+ align-items:center;
618
+ margin:0 8px;
619
+ }
619
620
 
620
- .iui-paginator-page-button{
621
- --_iui-button-active-stripe-inset:initial;
622
- --_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
623
- margin:0;
624
- padding:0;
625
- border:none;
626
- vertical-align:baseline;
627
- font-family:inherit;
628
- display:inline-flex;
629
- align-items:center;
630
- vertical-align:middle;
631
- justify-content:center;
632
- position:relative;
633
- box-sizing:border-box;
634
- border-radius:4px;
635
- line-height:22px;
636
- box-shadow:none;
637
- font-size:14px;
638
- font-weight:400;
639
- text-decoration:none;
640
- -webkit-user-select:none;
641
- -moz-user-select:none;
642
- -ms-user-select:none;
643
- user-select:none;
644
- cursor:pointer;
645
- white-space:nowrap;
646
- border:1px solid transparent;
647
- color:rgba(0, 0, 0, 0.8);
648
- color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
649
- color:var(--_iui-button-text-color);
650
- border-color:transparent;
651
- background-color:transparent;
652
- padding:0 8px;
653
- height:38px;
654
- gap:8px;
655
- width:38px;
656
- --_iui-button-active-stripe-inset:calc(100% - 4px) 2px 2px;
657
- }
658
- @media (prefers-reduced-motion: no-preference){
659
621
  .iui-paginator-page-button{
660
- transition:color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
661
- }
662
- }
663
- .iui-paginator-page-button:hover{
664
- --_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
665
- text-decoration:none;
666
- }
667
- .iui-paginator-page-button:focus-visible{
668
- outline:1px solid var(--iui-color-foreground-primary);
669
- outline-offset:-1px;
670
- }
671
- @supports not selector(*:focus-visible){
672
- .iui-paginator-page-button:focus{
622
+ --_iui-button-active-stripe-inset:initial;
623
+ --_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
624
+ margin:0;
625
+ padding:0;
626
+ border:none;
627
+ vertical-align:baseline;
628
+ font-family:inherit;
629
+ display:inline-flex;
630
+ align-items:center;
631
+ vertical-align:middle;
632
+ justify-content:center;
633
+ position:relative;
634
+ box-sizing:border-box;
635
+ border-radius:4px;
636
+ line-height:22px;
637
+ box-shadow:none;
638
+ font-size:14px;
639
+ font-weight:400;
640
+ text-decoration:none;
641
+ -webkit-user-select:none;
642
+ -moz-user-select:none;
643
+ -ms-user-select:none;
644
+ user-select:none;
645
+ cursor:pointer;
646
+ white-space:nowrap;
647
+ border:1px solid transparent;
648
+ color:rgba(0, 0, 0, 0.8);
649
+ color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-2));
650
+ color:var(--_iui-button-text-color);
651
+ border-color:transparent;
652
+ background-color:transparent;
653
+ padding:0 8px;
654
+ height:38px;
655
+ gap:8px;
656
+ width:38px;
657
+ --_iui-button-active-stripe-inset:calc(100% - 4px) 2px 2px;
658
+ }
659
+ @media (prefers-reduced-motion: no-preference){
660
+ .iui-paginator-page-button{
661
+ transition:color 0.2s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out;
662
+ }
663
+ }
664
+ .iui-paginator-page-button:hover{
665
+ --_iui-button-text-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-1));
666
+ text-decoration:none;
667
+ }
668
+ .iui-paginator-page-button:focus-visible{
673
669
  outline:1px solid var(--iui-color-foreground-primary);
674
670
  outline-offset:-1px;
675
671
  }
676
- }
677
- .iui-paginator-page-button[disabled], .iui-paginator-page-button:disabled{
678
- cursor:not-allowed;
679
- background:#edeff2;
680
- border-color:#edeff2;
681
- color:rgba(0, 0, 0, 0.2);
682
- background:var(--iui-color-background-disabled);
683
- border-color:var(--iui-color-background-disabled);
684
- color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
685
- }
686
- .iui-paginator-page-button > .iui-button-icon:only-child{
687
- margin-left:3px;
688
- margin-right:3px;
689
- }
690
- .iui-paginator-page-button:hover{
691
- background-color:rgba(0, 0, 0, 0.1);
692
- border-color:transparent;
693
- background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
694
- border-color:transparent;
695
- }
696
- .iui-paginator-page-button.iui-active{
697
- background-color:rgba(0, 138, 224, 0.1);
698
- color:#008ae0;
699
- background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
700
- color:var(--iui-color-foreground-primary);
701
- border-color:transparent;
702
- }
703
- .iui-paginator-page-button[disabled], .iui-paginator-page-button:disabled{
704
- cursor:not-allowed;
705
- background:#edeff2;
706
- border-color:#edeff2;
707
- color:rgba(0, 0, 0, 0.2);
708
- background:var(--iui-color-background-disabled);
709
- border-color:var(--iui-color-background-disabled);
710
- color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
711
- background-color:transparent;
712
- border-color:transparent;
713
- background-color:transparent;
714
- border-color:transparent;
715
- }
716
- .iui-paginator-page-button[disabled].iui-active, .iui-paginator-page-button:disabled.iui-active{
717
- background-color:rgba(0, 0, 0, 0.05);
718
- background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
719
- }
720
- .iui-paginator-page-button.iui-active::after{
721
- content:"";
722
- position:absolute;
723
- inset:var(--_iui-button-active-stripe-inset);
724
- background-color:var(--iui-color-foreground-primary);
725
- }
726
- .iui-paginator-page-button.iui-active[disabled]::after, .iui-paginator-page-button.iui-active:disabled::after{
727
- background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
728
- }
729
- .iui-paginator-page-button-small{
730
- padding:0 8px;
731
- height:27px;
732
- gap:4px;
733
- width:27px;
734
- }
672
+ @supports not selector(*:focus-visible){
673
+ .iui-paginator-page-button:focus{
674
+ outline:1px solid var(--iui-color-foreground-primary);
675
+ outline-offset:-1px;
676
+ }
677
+ }
678
+ .iui-paginator-page-button[disabled], .iui-paginator-page-button:disabled{
679
+ cursor:not-allowed;
680
+ background:#edeff2;
681
+ border-color:#edeff2;
682
+ color:rgba(0, 0, 0, 0.2);
683
+ background:var(--iui-color-background-disabled);
684
+ border-color:var(--iui-color-background-disabled);
685
+ color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
686
+ }
687
+ .iui-paginator-page-button > .iui-button-icon:only-child{
688
+ margin-left:3px;
689
+ margin-right:3px;
690
+ }
691
+ .iui-paginator-page-button:hover{
692
+ background-color:rgba(0, 0, 0, 0.1);
693
+ border-color:transparent;
694
+ background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-6));
695
+ border-color:transparent;
696
+ }
697
+ .iui-paginator-page-button.iui-active{
698
+ background-color:rgba(0, 138, 224, 0.1);
699
+ color:#008ae0;
700
+ background-color:rgba(var(--iui-color-foreground-primary-rgb), var(--iui-opacity-6));
701
+ color:var(--iui-color-foreground-primary);
702
+ border-color:transparent;
703
+ }
704
+ .iui-paginator-page-button[disabled], .iui-paginator-page-button:disabled{
705
+ cursor:not-allowed;
706
+ background:#edeff2;
707
+ border-color:#edeff2;
708
+ color:rgba(0, 0, 0, 0.2);
709
+ background:var(--iui-color-background-disabled);
710
+ border-color:var(--iui-color-background-disabled);
711
+ color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
712
+ background-color:transparent;
713
+ border-color:transparent;
714
+ background-color:transparent;
715
+ border-color:transparent;
716
+ }
717
+ .iui-paginator-page-button[disabled].iui-active, .iui-paginator-page-button:disabled.iui-active{
718
+ background-color:rgba(0, 0, 0, 0.05);
719
+ background-color:rgba(var(--iui-color-foreground-body-rgb), 0.05);
720
+ }
721
+ .iui-paginator-page-button.iui-active::after{
722
+ content:"";
723
+ position:absolute;
724
+ inset:var(--_iui-button-active-stripe-inset);
725
+ background-color:var(--iui-color-foreground-primary);
726
+ }
727
+ .iui-paginator-page-button.iui-active[disabled]::after, .iui-paginator-page-button.iui-active:disabled::after{
728
+ background-color:rgba(var(--iui-color-foreground-body-rgb), var(--iui-opacity-5));
729
+ }
730
+ .iui-paginator-page-button-small{
731
+ padding:0 8px;
732
+ height:27px;
733
+ gap:4px;
734
+ width:27px;
735
+ }
735
736
 
736
- .iui-column-filter{
737
- --iui-surface-background-color:var(--iui-color-background-1);
738
- --iui-surface-border-radius:0;
739
- --iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
740
- background-color:var(--iui-surface-background-color);
741
- border-radius:var(--iui-surface-border-radius);
742
- box-shadow:var(--iui-surface-elevation);
743
- box-sizing:border-box;
744
- color:var(--iui-text-color);
745
- padding:11px 12px;
746
- display:inline-flex;
747
- flex-direction:column;
748
- align-items:flex-end;
749
- }
750
- @media (forced-colors: active){
751
737
  .iui-column-filter{
752
- border:1px solid transparent;
738
+ --iui-surface-background-color:var(--iui-color-background-1);
739
+ --iui-surface-border-radius:0;
740
+ --iui-surface-elevation:0 1px 5px rgba(0, 0, 0, 0.25);
741
+ background-color:var(--iui-surface-background-color);
742
+ border-radius:var(--iui-surface-border-radius);
743
+ box-shadow:var(--iui-surface-elevation);
744
+ box-sizing:border-box;
745
+ color:var(--iui-text-color);
746
+ padding:11px 12px;
747
+ display:inline-flex;
748
+ flex-direction:column;
749
+ align-items:flex-end;
750
+ }
751
+ @media (forced-colors: active){
752
+ .iui-column-filter{
753
+ border:1px solid transparent;
754
+ }
755
+ }
756
+ .iui-column-filter > .iui-input-container:not(.iui-inline-label){
757
+ width:100%;
753
758
  }
754
- }
755
- .iui-column-filter > .iui-input-container:not(.iui-inline-label){
756
- width:100%;
757
- }
758
- .iui-column-filter > .iui-input-container,
759
+ .iui-column-filter > .iui-input-container,
759
760
  .iui-column-filter > .iui-input{
760
- margin-bottom:11px;
761
- }
762
- .iui-column-filter > .iui-button-bar{
763
- display:flex;
764
- width:100%;
765
- align-content:center;
766
- }
767
- .iui-column-filter > .iui-button-bar > .iui-button:first-of-type{
768
- margin-left:auto;
769
- }
770
- .iui-column-filter > .iui-button-bar > .iui-button:not(:last-child){
771
- margin-right:8px;
761
+ margin-bottom:11px;
762
+ }
763
+ .iui-column-filter > .iui-button-bar{
764
+ display:flex;
765
+ width:100%;
766
+ align-content:center;
767
+ }
768
+ .iui-column-filter > .iui-button-bar > .iui-button:first-of-type{
769
+ margin-left:auto;
770
+ }
771
+ .iui-column-filter > .iui-button-bar > .iui-button:not(:last-child){
772
+ margin-right:8px;
773
+ }
772
774
  }