@acorex/styles 7.0.19 → 7.0.21
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/package.json
CHANGED
package/src/shared/_list.scss
CHANGED
@@ -86,6 +86,8 @@
|
|
86
86
|
}
|
87
87
|
}
|
88
88
|
&.ax-state-selected {
|
89
|
+
background-color: rgba(var(--ax-color-primary-50)) !important;
|
90
|
+
color: rgba(var(--ax-color-primary-500)) !important;
|
89
91
|
.ax-selected-icon {
|
90
92
|
color: rgb(var(--ax-color-primary));
|
91
93
|
font-size: 1.5rem;
|
@@ -102,8 +104,7 @@
|
|
102
104
|
opacity: 0.5;
|
103
105
|
}
|
104
106
|
|
105
|
-
&:focus,
|
106
|
-
&:focus-within,
|
107
|
+
&:focus-visible,
|
107
108
|
&:hover {
|
108
109
|
background-color: rgba(var(--ax-color-ghost), 0.05);
|
109
110
|
}
|
package/src/shared/_table.scss
CHANGED
@@ -11,16 +11,17 @@
|
|
11
11
|
td {
|
12
12
|
border-bottom: 1px solid;
|
13
13
|
border-color: rgb(var(--ax-color-border-default));
|
14
|
-
padding: 1rem;
|
14
|
+
padding: 0.875rem 1rem;
|
15
15
|
}
|
16
16
|
thead {
|
17
17
|
background-color: rgb(var(--ax-color-ghost), 0.05);
|
18
18
|
border-bottom: 1px solid;
|
19
19
|
border-color: rgb(var(--ax-color-border-default));
|
20
20
|
th {
|
21
|
+
text-transform: uppercase;
|
21
22
|
font-weight: 500;
|
22
23
|
text-align: start;
|
23
|
-
padding: 1rem;
|
24
|
+
padding: 0.875rem 1rem;
|
24
25
|
}
|
25
26
|
}
|
26
27
|
&.ax-table-alternate {
|
package/tailwind.config.js
CHANGED
@@ -127,14 +127,30 @@ module.exports = withAnimations({
|
|
127
127
|
backgroundColor:
|
128
128
|
'rgb(var(--ax-color-default-color) / var(--tw-text-opacity))',
|
129
129
|
},
|
130
|
-
'.tabs-fit': {
|
131
|
-
|
130
|
+
'.tabs-fit': {
|
131
|
+
width: '100%',
|
132
|
+
},
|
133
|
+
'.skeleton': {
|
134
|
+
position: 'relative',
|
135
|
+
overflow: 'hidden',
|
136
|
+
backgroundColor: 'rgba(var(--ax-color-ghost), 0.15)',
|
137
|
+
},
|
132
138
|
'.skeleton-animate': {},
|
133
|
-
'.xs': {
|
134
|
-
|
135
|
-
|
136
|
-
'.
|
137
|
-
|
139
|
+
'.xs': {
|
140
|
+
'--ax-size-default': '2rem',
|
141
|
+
},
|
142
|
+
'.sm': {
|
143
|
+
'--ax-size-default': '2.25rem',
|
144
|
+
},
|
145
|
+
'.md': {
|
146
|
+
'--ax-size-default': '2.5rem',
|
147
|
+
},
|
148
|
+
'.lg': {
|
149
|
+
'--ax-size-default': '3rem',
|
150
|
+
},
|
151
|
+
'.xl': {
|
152
|
+
'--ax-size-default': '3.5rem',
|
153
|
+
},
|
138
154
|
};
|
139
155
|
addUtilities(acorexClasses, ['responsive', 'hover', 'focus']);
|
140
156
|
}),
|