@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.
- package/CHANGELOG.md +4 -0
- package/css/alert.css +250 -248
- package/css/all.css +9975 -9928
- package/css/anchor.css +58 -56
- package/css/backdrop.css +21 -19
- package/css/badge.css +26 -24
- package/css/blockquote.css +26 -24
- package/css/breadcrumbs.css +384 -382
- package/css/button.css +462 -460
- package/css/carousel.css +119 -117
- package/css/code.css +87 -85
- package/css/color-picker.css +221 -219
- package/css/date-picker.css +449 -447
- package/css/dialog.css +153 -151
- package/css/expandable-block.css +209 -207
- package/css/fieldset.css +33 -31
- package/css/file-upload.css +100 -98
- package/css/footer.css +87 -85
- package/css/global.css +462 -460
- package/css/header.css +484 -482
- package/css/icon.css +163 -161
- package/css/information-panel.css +190 -188
- package/css/inputs.css +1257 -1255
- package/css/keyboard.css +34 -32
- package/css/location-marker.css +110 -108
- package/css/menu.css +168 -166
- package/css/non-ideal-state.css +62 -60
- package/css/notification-marker.css +246 -244
- package/css/popover.css +11 -9
- package/css/progress-indicator.css +379 -377
- package/css/radio-tile.css +184 -182
- package/css/reset-global-styles.css +35 -33
- package/css/side-navigation.css +209 -207
- package/css/skip-to-content.css +55 -53
- package/css/slider.css +240 -238
- package/css/surface.css +14 -12
- package/css/table.css +710 -708
- package/css/tabs.css +339 -337
- package/css/tag.css +142 -140
- package/css/text.css +102 -100
- package/css/tile.css +544 -542
- package/css/time-picker.css +125 -123
- package/css/toast-notification.css +301 -299
- package/css/toggle-switch.css +237 -235
- package/css/tooltip.css +53 -51
- package/css/tree.css +137 -135
- package/css/user-icon.css +242 -240
- package/css/wizard.css +182 -180
- package/package.json +1 -1
- package/scss/alert/classes.scss +7 -5
- package/scss/anchor/classes.scss +6 -4
- package/scss/backdrop/classes.scss +4 -2
- package/scss/badge/classes.scss +4 -2
- package/scss/blockquote/classes.scss +4 -2
- package/scss/breadcrumbs/classes.scss +22 -20
- package/scss/button/classes.scss +47 -45
- package/scss/carousel/classes.scss +10 -8
- package/scss/code/classes.scss +7 -5
- package/scss/color-picker/classes.scss +40 -38
- package/scss/date-picker/classes.scss +44 -42
- package/scss/dialog/classes.scss +45 -43
- package/scss/expandable-block/classes.scss +4 -2
- package/scss/fieldset/classes.scss +4 -2
- package/scss/file-upload/classes.scss +4 -2
- package/scss/footer/classes.scss +16 -14
- package/scss/header/classes.scss +7 -5
- package/scss/icon/classes.scss +19 -17
- package/scss/information-panel/classes.scss +18 -16
- package/scss/inputs/classes.scss +62 -60
- package/scss/keyboard/classes.scss +4 -2
- package/scss/location-marker/classes.scss +10 -8
- package/scss/menu/classes.scss +14 -12
- package/scss/non-ideal-state/classes.scss +4 -2
- package/scss/notification-marker/classes.scss +5 -3
- package/scss/popover/classes.scss +4 -2
- package/scss/progress-indicator/classes.scss +22 -20
- package/scss/radio-tile/classes.scss +22 -20
- package/scss/reset-global-styles.scss +25 -23
- package/scss/side-navigation/classes.scss +10 -8
- package/scss/skip-to-content/classes.scss +4 -2
- package/scss/slider/classes.scss +37 -35
- package/scss/style/global.scss +49 -47
- package/scss/surface/classes.scss +4 -2
- package/scss/table/classes.scss +45 -43
- package/scss/tabs/classes.scss +31 -29
- package/scss/tag/classes.scss +20 -18
- package/scss/text/classes.scss +36 -34
- package/scss/tile/classes.scss +36 -34
- package/scss/time-picker/classes.scss +11 -9
- package/scss/toast-notification/classes.scss +71 -69
- package/scss/toggle-switch/classes.scss +7 -5
- package/scss/tooltip/classes.scss +17 -15
- package/scss/tree/classes.scss +13 -11
- package/scss/user-icon/classes.scss +18 -16
- 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
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
.iui-table .iui-cell-start-icon{
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
.iui-table .iui-cell-end-icon{
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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
|
-
|
|
43
|
-
}
|
|
44
|
-
.iui-table.iui-condensed .iui-row .iui-cell{
|
|
45
|
-
|
|
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
|
-
|
|
50
|
-
}
|
|
51
|
-
.iui-table.iui-extra-condensed .iui-row .iui-cell{
|
|
52
|
-
|
|
53
|
-
}
|
|
54
|
-
.iui-table.iui-extra-condensed .iui-table-header .iui-cell{
|
|
55
|
-
|
|
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
|
|
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
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
}
|
|
78
|
-
.iui-table-header .iui-row{
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
}
|
|
83
|
-
.iui-table-header .iui-cell{
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
88
|
-
.iui-table-header .iui-cell:not(.iui-slot){
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
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)
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
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
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
}
|
|
145
|
-
.iui-table-header .iui-cell:not(.iui-slot)
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
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
|
-
|
|
154
|
-
}
|
|
155
|
-
.iui-table-header .iui-reorder-bar{
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
}
|
|
160
|
-
.iui-table-header .iui-reorder-column-right > .iui-reorder-bar{
|
|
161
|
-
|
|
162
|
-
}
|
|
163
|
-
.iui-table-header .iui-reorder-column-left > .iui-reorder-bar{
|
|
164
|
-
|
|
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
|
-
|
|
169
|
-
|
|
170
|
-
}
|
|
171
|
-
.iui-table-header .iui-sort{
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
}
|
|
176
|
-
.iui-table-header .iui-sorted{
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
}
|
|
180
|
-
.iui-table-header .iui-sorted .iui-sort{
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
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
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}
|
|
194
|
-
.iui-table-header-actions-container .iui-cell-end-icon{
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
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
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
}
|
|
211
|
-
.iui-table-body.iui-scroll-snapping{
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
}
|
|
215
|
-
.iui-table-body.iui-scroll-snapping .iui-row{
|
|
216
|
-
|
|
217
|
-
}
|
|
218
|
-
.iui-table-body.iui-zebra-striping .iui-row:nth-child(even):not(.iui-selected) .iui-cell{
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
}
|
|
222
|
-
.iui-table-body .iui-row{
|
|
223
|
-
|
|
224
|
-
|
|
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
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
}
|
|
276
|
-
.iui-table-body .iui-row.iui-expanded-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
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
|
-
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
.iui-table-body .iui-row.iui-expanded-content.iui-
|
|
295
|
-
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
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
|
-
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.iui-table-body .iui-row
|
|
306
|
-
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
}
|
|
323
|
-
.iui-table-body .iui-row.iui-selected
|
|
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
|
-
|
|
326
|
-
|
|
327
|
-
}
|
|
328
|
-
.iui-table-body .iui-row.iui-selected + .iui-expanded-content{
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
}
|
|
332
|
-
.iui-table-body .iui-row.iui-selected + .iui-expanded-content:last-child{
|
|
333
|
-
|
|
334
|
-
}
|
|
335
|
-
.iui-table-body .iui-row.iui-selected + .iui-expanded-content:last-child{
|
|
336
|
-
|
|
337
|
-
}
|
|
338
|
-
.iui-table-body .iui-row.iui-new{
|
|
339
|
-
|
|
340
|
-
}
|
|
341
|
-
.iui-table-body .iui-row.iui-new > .iui-main-column::before{
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
}
|
|
349
|
-
.iui-table-body .iui-row .iui-cell.iui-disabled, .iui-table-body .iui-row.iui-expanded-content.iui-disabled{
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
368
|
-
|
|
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
|
-
|
|
372
|
-
|
|
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
|
-
|
|
379
|
-
|
|
380
|
-
}
|
|
381
|
-
.iui-table-body .iui-row.iui-positive .iui-cell-end-icon svg{
|
|
382
|
-
|
|
383
|
-
|
|
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
|
-
|
|
388
|
-
|
|
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
|
-
|
|
392
|
-
|
|
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
|
-
|
|
399
|
-
|
|
400
|
-
}
|
|
401
|
-
.iui-table-body .iui-row.iui-warning .iui-cell-end-icon svg{
|
|
402
|
-
|
|
403
|
-
|
|
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
|
-
|
|
408
|
-
|
|
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
|
-
|
|
412
|
-
|
|
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
|
-
|
|
419
|
-
|
|
420
|
-
}
|
|
421
|
-
.iui-table-body .iui-row.iui-negative .iui-cell-end-icon svg{
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
}
|
|
425
|
-
.iui-table-body > .iui-table-empty{
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
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
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
}
|
|
452
|
-
.iui-cell:first-of-type{
|
|
453
|
-
|
|
454
|
-
}
|
|
455
|
-
.iui-cell:last-of-type{
|
|
456
|
-
|
|
457
|
-
}
|
|
458
|
-
.iui-cell.iui-slot{
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
}
|
|
468
|
-
.iui-cell.iui-cell-sticky{
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
}
|
|
475
|
-
.iui-cell:not(.iui-slot):last-child{
|
|
476
|
-
|
|
477
|
-
}
|
|
478
|
-
.iui-cell.iui-positive{
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
}
|
|
482
|
-
.iui-cell.iui-positive::-moz-selection, .iui-cell.iui-positive *::-moz-selection{
|
|
483
|
-
|
|
484
|
-
|
|
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
|
-
|
|
489
|
-
|
|
490
|
-
}
|
|
491
|
-
.iui-cell.iui-warning{
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
}
|
|
495
|
-
.iui-cell.iui-warning::-moz-selection, .iui-cell.iui-warning *::-moz-selection{
|
|
496
|
-
|
|
497
|
-
|
|
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
|
-
|
|
502
|
-
|
|
503
|
-
}
|
|
504
|
-
.iui-cell.iui-negative{
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
}
|
|
508
|
-
.iui-cell.iui-negative::-moz-selection, .iui-cell.iui-negative *::-moz-selection{
|
|
509
|
-
|
|
510
|
-
|
|
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
|
-
|
|
515
|
-
|
|
516
|
-
}
|
|
517
|
-
.iui-cell[contenteditable]{
|
|
518
|
-
|
|
519
|
-
}
|
|
520
|
-
.iui-cell[contenteditable]:focus, .iui-cell[contenteditable]:hover{
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
}
|
|
524
|
-
.iui-cell[contenteditable]:focus{
|
|
525
|
-
|
|
526
|
-
|
|
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
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
}
|
|
539
|
-
.iui-table-header .iui-cell-shadow-left{
|
|
540
|
-
|
|
541
|
-
|
|
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
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
}
|
|
554
|
-
.iui-table-header .iui-cell-shadow-right{
|
|
555
|
-
|
|
556
|
-
|
|
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
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
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
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
}
|
|
585
|
-
.iui-paginator > .iui-center{
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
}
|
|
591
|
-
.iui-paginator > .iui-right{
|
|
592
|
-
|
|
593
|
-
}
|
|
594
|
-
.iui-paginator-page-size-label{
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
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
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
}
|
|
610
|
-
.iui-paginator-ellipsis-small{
|
|
611
|
-
|
|
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
|
-
|
|
616
|
-
|
|
617
|
-
|
|
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
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
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
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
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
|
-
|
|
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
|
-
|
|
761
|
-
}
|
|
762
|
-
.iui-column-filter > .iui-button-bar{
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
}
|
|
767
|
-
.iui-column-filter > .iui-button-bar > .iui-button:first-of-type{
|
|
768
|
-
|
|
769
|
-
}
|
|
770
|
-
.iui-column-filter > .iui-button-bar > .iui-button:not(:last-child){
|
|
771
|
-
|
|
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
|
}
|