@itwin/itwinui-css 0.48.2 → 0.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/all.css +9 -0
- package/css/table.css +9 -0
- package/package.json +1 -1
- package/scss/table/table.scss +16 -0
package/css/all.css
CHANGED
|
@@ -4855,6 +4855,9 @@ html.iui-theme-dark{
|
|
|
4855
4855
|
outline-offset:-1px; } }
|
|
4856
4856
|
.iui-table-header .iui-cell:not(.iui-slot).iui-actionable{
|
|
4857
4857
|
cursor:pointer; }
|
|
4858
|
+
.iui-table-header .iui-cell:not(.iui-slot).iui-grabbing{
|
|
4859
|
+
cursor:-webkit-grabbing;
|
|
4860
|
+
cursor:grabbing; }
|
|
4858
4861
|
.iui-table-header .iui-cell:not(.iui-slot) > .iui-filter-button{
|
|
4859
4862
|
margin-left:4px;
|
|
4860
4863
|
margin-right:8px; }
|
|
@@ -4894,6 +4897,12 @@ html.iui-theme-dark{
|
|
|
4894
4897
|
.iui-table-header .iui-cell:not(.iui-slot):focus .iui-filter-button, .iui-table-header .iui-cell:not(.iui-slot):focus-within .iui-sort,
|
|
4895
4898
|
.iui-table-header .iui-cell:not(.iui-slot):focus-within .iui-filter-button{
|
|
4896
4899
|
visibility:visible; }
|
|
4900
|
+
.iui-table-header .iui-reorder-column-right{
|
|
4901
|
+
border-right:2px solid #008BE1;
|
|
4902
|
+
border-right:2px solid var(--iui-color-foreground-primary); }
|
|
4903
|
+
.iui-table-header .iui-reorder-column-left{
|
|
4904
|
+
border-left:2px solid #008BE1;
|
|
4905
|
+
border-left:2px solid var(--iui-color-foreground-primary); }
|
|
4897
4906
|
.iui-table-header .iui-sort{
|
|
4898
4907
|
visibility:hidden;
|
|
4899
4908
|
fill:rgba(0, 0, 0, 0.4);
|
package/css/table.css
CHANGED
|
@@ -63,6 +63,9 @@
|
|
|
63
63
|
outline-offset:-1px; } }
|
|
64
64
|
.iui-table-header .iui-cell:not(.iui-slot).iui-actionable{
|
|
65
65
|
cursor:pointer; }
|
|
66
|
+
.iui-table-header .iui-cell:not(.iui-slot).iui-grabbing{
|
|
67
|
+
cursor:-webkit-grabbing;
|
|
68
|
+
cursor:grabbing; }
|
|
66
69
|
.iui-table-header .iui-cell:not(.iui-slot) > .iui-filter-button{
|
|
67
70
|
margin-left:4px;
|
|
68
71
|
margin-right:8px; }
|
|
@@ -102,6 +105,12 @@
|
|
|
102
105
|
.iui-table-header .iui-cell:not(.iui-slot):focus .iui-filter-button, .iui-table-header .iui-cell:not(.iui-slot):focus-within .iui-sort,
|
|
103
106
|
.iui-table-header .iui-cell:not(.iui-slot):focus-within .iui-filter-button{
|
|
104
107
|
visibility:visible; }
|
|
108
|
+
.iui-table-header .iui-reorder-column-right{
|
|
109
|
+
border-right:2px solid #008BE1;
|
|
110
|
+
border-right:2px solid var(--iui-color-foreground-primary); }
|
|
111
|
+
.iui-table-header .iui-reorder-column-left{
|
|
112
|
+
border-left:2px solid #008BE1;
|
|
113
|
+
border-left:2px solid var(--iui-color-foreground-primary); }
|
|
105
114
|
.iui-table-header .iui-sort{
|
|
106
115
|
visibility:hidden;
|
|
107
116
|
fill:rgba(0, 0, 0, 0.4);
|
package/package.json
CHANGED
package/scss/table/table.scss
CHANGED
|
@@ -40,6 +40,10 @@
|
|
|
40
40
|
cursor: pointer;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
+
&.iui-grabbing {
|
|
44
|
+
cursor: grabbing;
|
|
45
|
+
}
|
|
46
|
+
|
|
43
47
|
> .iui-filter-button {
|
|
44
48
|
margin-left: $iui-xs;
|
|
45
49
|
margin-right: $iui-s;
|
|
@@ -99,6 +103,18 @@
|
|
|
99
103
|
}
|
|
100
104
|
}
|
|
101
105
|
|
|
106
|
+
.iui-reorder-column-right {
|
|
107
|
+
@include themed {
|
|
108
|
+
border-right: $iui-xxs solid t(iui-color-foreground-primary);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.iui-reorder-column-left {
|
|
113
|
+
@include themed {
|
|
114
|
+
border-left: $iui-xxs solid t(iui-color-foreground-primary);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
102
118
|
// Sort icon
|
|
103
119
|
.iui-sort {
|
|
104
120
|
visibility: hidden;
|