@acorex/styles 19.11.0 → 19.11.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/components/_action-item.scss +11 -22
- package/package.json +1 -1
@@ -1,16 +1,16 @@
|
|
1
1
|
.ax-action-list {
|
2
|
+
display: flex;
|
3
|
+
|
2
4
|
&.ax-action-list-horizontal {
|
3
|
-
display: flex;
|
4
5
|
flex-direction: row;
|
5
6
|
|
6
7
|
ax-divider {
|
7
|
-
|
8
|
-
width: 1px;
|
8
|
+
width: 0px;
|
9
9
|
height: auto;
|
10
|
+
border-inline-end: 1px solid rgba(var(--ax-sys-color-border-lightest-surface));
|
10
11
|
}
|
11
12
|
}
|
12
13
|
&.ax-action-list-vertical {
|
13
|
-
display: flex;
|
14
14
|
flex-direction: column;
|
15
15
|
|
16
16
|
.ax-action-item {
|
@@ -24,7 +24,6 @@
|
|
24
24
|
}
|
25
25
|
|
26
26
|
ax-divider {
|
27
|
-
margin-block: 0.25rem;
|
28
27
|
height: 1px;
|
29
28
|
width: 100%;
|
30
29
|
}
|
@@ -32,8 +31,6 @@
|
|
32
31
|
|
33
32
|
ax-title {
|
34
33
|
display: block;
|
35
|
-
padding-inline: 0.875rem;
|
36
|
-
padding-block: 0.25rem;
|
37
34
|
font-size: 0.75rem;
|
38
35
|
line-height: 1rem;
|
39
36
|
font-weight: bolder;
|
@@ -46,6 +43,10 @@
|
|
46
43
|
background-color: rgba(var(--ax-sys-color-border-lightest-surface));
|
47
44
|
}
|
48
45
|
|
46
|
+
ax-text {
|
47
|
+
white-space: nowrap;
|
48
|
+
}
|
49
|
+
|
49
50
|
.ax-action-item {
|
50
51
|
display: flex;
|
51
52
|
align-items: center;
|
@@ -55,7 +56,7 @@
|
|
55
56
|
height: 2.25rem;
|
56
57
|
width: 100%;
|
57
58
|
cursor: pointer;
|
58
|
-
padding-inline
|
59
|
+
padding-inline: var(--ax-comp-action-item-padding-inline, 0.875rem);
|
59
60
|
&.ax-state-disabled {
|
60
61
|
cursor: not-allowed;
|
61
62
|
opacity: 0.5;
|
@@ -75,20 +76,9 @@
|
|
75
76
|
display: flex;
|
76
77
|
align-items: center;
|
77
78
|
justify-content: center;
|
78
|
-
|
79
|
-
&.ax-action-item-prefix {
|
80
|
-
padding-inline-start: 0.875rem;
|
81
|
-
& > ax-text {
|
82
|
-
padding-inline-start: 0.5rem;
|
83
|
-
white-space: nowrap;
|
84
|
-
}
|
85
|
-
}
|
86
|
-
|
79
|
+
&.ax-action-item-prefix,
|
87
80
|
&.ax-action-item-suffix {
|
88
|
-
|
89
|
-
padding-inline-end: 0.875rem;
|
90
|
-
margin-inline-start: 1rem;
|
91
|
-
}
|
81
|
+
gap: 0.5rem;
|
92
82
|
}
|
93
83
|
}
|
94
84
|
|
@@ -102,7 +92,6 @@
|
|
102
92
|
color: rgba(var(--ax-sys-body-text-color));
|
103
93
|
opacity: 0.5;
|
104
94
|
font-weight: lighter;
|
105
|
-
padding-inline: 0.5rem;
|
106
95
|
}
|
107
96
|
}
|
108
97
|
}
|