@acorex/styles 7.3.2 → 7.4.3
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
@@ -66,7 +66,9 @@
|
|
66
66
|
border: 1px solid;
|
67
67
|
border-color: rgba(var(--ax-color-border-default));
|
68
68
|
border-radius: var(--ax-rounded-border-default);
|
69
|
-
box-shadow:
|
69
|
+
box-shadow:
|
70
|
+
0px 10px 15px -3px rgba(0, 0, 0, 0.1),
|
71
|
+
0px 4px 6px -2px rgba(0, 0, 0, 0.05);
|
70
72
|
overflow: hidden;
|
71
73
|
margin-top: 0.25rem;
|
72
74
|
ax-header,
|
@@ -109,10 +111,12 @@
|
|
109
111
|
border: 1px solid;
|
110
112
|
border-color: rgba(var(--ax-color-border-default));
|
111
113
|
border-radius: var(--ax-rounded-border-default);
|
112
|
-
box-shadow:
|
114
|
+
box-shadow:
|
115
|
+
0px 10px 15px -3px rgba(0, 0, 0, 0.1),
|
116
|
+
0px 4px 6px -2px rgba(0, 0, 0, 0.05);
|
113
117
|
padding: 0.5rem 0;
|
114
118
|
|
115
|
-
|
119
|
+
ax-button-item {
|
116
120
|
position: relative;
|
117
121
|
display: inline-flex;
|
118
122
|
align-items: center;
|
package/src/themes/default.scss
CHANGED
@@ -20,6 +20,9 @@
|
|
20
20
|
--ax-color-default: 239, 241, 245;
|
21
21
|
--ax-color-default-fore: 22, 22, 22;
|
22
22
|
|
23
|
+
--ax-color-ghost: 255, 255, 255;
|
24
|
+
--ax-color-ghost-fore: 22, 22, 22;
|
25
|
+
|
23
26
|
--ax-color-primary-fore: 255, 255, 255;
|
24
27
|
--ax-color-primary-50: 239, 246, 255;
|
25
28
|
--ax-color-primary-100: 219, 234, 254;
|
@@ -106,7 +109,7 @@
|
|
106
109
|
--ax-color-text-default: 255, 255, 255;
|
107
110
|
|
108
111
|
--ax-color-surface: 31, 41, 55;
|
109
|
-
--ax-color-
|
112
|
+
--ax-color-surface-fore: 255, 255, 255;
|
110
113
|
|
111
114
|
--ax-color-on-surface: 55, 65, 81;
|
112
115
|
--ax-color-on-surface-fore: 255, 255, 255;
|
@@ -116,4 +119,7 @@
|
|
116
119
|
|
117
120
|
--ax-color-default: 77, 91, 113;
|
118
121
|
--ax-color-default-fore: 255, 255, 255;
|
122
|
+
|
123
|
+
--ax-color-ghost: 77, 91, 113;
|
124
|
+
--ax-color-ghost-fore: 255, 255, 255;
|
119
125
|
}
|