@acorex/styles 5.0.52 → 5.0.53
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
@@ -0,0 +1,52 @@
|
|
1
|
+
@layer components {
|
2
|
+
ax-collpase,
|
3
|
+
.ax-collapse {
|
4
|
+
@apply ax-border ax-border-light-200 ax-block ax-text-sm ax-rounded ax-overflow-hidden;
|
5
|
+
|
6
|
+
.ax-collapse-header {
|
7
|
+
@apply ax-cursor-pointer ax-select-none;
|
8
|
+
|
9
|
+
&.ax-state-collapsed {
|
10
|
+
.ax-collapse-header-container {
|
11
|
+
@apply ax-border-b-0;
|
12
|
+
.ax-collapse-arrow {
|
13
|
+
@apply -ax-rotate-90;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
.ax-collapse-custom-header-container{
|
17
|
+
@apply ax-border-b-0;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
.ax-collapse-custom-header-container{
|
21
|
+
@apply ax-bg-light-50 ax-border-b ax-border-light-200;
|
22
|
+
}
|
23
|
+
.ax-collapse-header-container {
|
24
|
+
@apply ax-flex ax-justify-between ax-px-3 ax-py-1.5 ax-bg-light-50 ax-border-b ax-border-light-200;
|
25
|
+
.ax-collapse-arrow {
|
26
|
+
@apply ax-inline-block ax-text-xl ax-me-2 ax-rotate-90;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
.ax-collapse-body {
|
31
|
+
@apply ax-p-3;
|
32
|
+
}
|
33
|
+
}
|
34
|
+
.ax-collapse-group {
|
35
|
+
@apply ax-block ax-border ax-border-light-200 ax-rounded ax-overflow-hidden;
|
36
|
+
|
37
|
+
ax-collpase,
|
38
|
+
.ax-collapse {
|
39
|
+
@apply ax-rounded-none ax-border-none;
|
40
|
+
.ax-collapse-header-container {
|
41
|
+
@apply ax-border-t ax-border-light-200;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
ax-collapse {
|
45
|
+
&:first-child {
|
46
|
+
.ax-collapse-header-container {
|
47
|
+
@apply ax-border-t-0;
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
52
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
@layer components {
|
2
|
+
ax-result,
|
3
|
+
.ax-result {
|
4
|
+
@apply ax-flex ax-flex-col;
|
5
|
+
.ax-result-icon {
|
6
|
+
@apply ax-text-6xl ax-text-center;
|
7
|
+
}
|
8
|
+
.ax-result-title,
|
9
|
+
.ax-result-description {
|
10
|
+
@apply ax-mt-4 ax-text-center;
|
11
|
+
}
|
12
|
+
.ax-result-title {
|
13
|
+
@apply ax-text-2xl ax-font-semibold ax-text-light-700 dark:ax-text-light-50;
|
14
|
+
}
|
15
|
+
.ax-result-description {
|
16
|
+
@apply ax-text-sm ax-text-light-500 dark:ax-text-light-100;
|
17
|
+
}
|
18
|
+
.ax-custom-icon,.ax-custom-image{
|
19
|
+
@apply ax-flex ax-items-center ax-justify-center;
|
20
|
+
}
|
21
|
+
.ax-result-content {
|
22
|
+
@apply ax-mt-4;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
}
|
@@ -126,7 +126,7 @@
|
|
126
126
|
|
127
127
|
&.ax-look-pills-color {
|
128
128
|
ax-tab-item {
|
129
|
-
@apply ax-text-light-fore ax-
|
129
|
+
@apply ax-text-light-fore ax-me-1 ax-rounded dark:ax-text-primary-200;
|
130
130
|
|
131
131
|
&:hover {
|
132
132
|
@apply ax-bg-primary-100 ax-text-primary-500 dark:ax-text-primary-50 dark:ax-bg-primary-500;
|
@@ -6,6 +6,7 @@
|
|
6
6
|
@import "./calendar";
|
7
7
|
@import "./carousel";
|
8
8
|
@import "./checkbox";
|
9
|
+
@import "./collapse";
|
9
10
|
@import "./datapager";
|
10
11
|
@import "./datepicker";
|
11
12
|
@import "./dialog";
|
@@ -25,6 +26,7 @@
|
|
25
26
|
@import "./radio";
|
26
27
|
@import "./range-slider";
|
27
28
|
@import "./rating";
|
29
|
+
@import "./result";
|
28
30
|
@import "./selectbox";
|
29
31
|
@import "./selection-list";
|
30
32
|
@import "./side-menu";
|