@basis-ng/styles 0.0.1-alpha.194 → 0.0.1-alpha.195
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/components/card.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
b-card {
|
|
2
|
-
@apply flex flex-col gap-4 p-6 bg-
|
|
3
|
-
@apply dark:bg-
|
|
2
|
+
@apply flex flex-col gap-4 p-6 bg-surface inset-ring-1 inset-ring-ring rounded-size-lg;
|
|
3
|
+
@apply dark:bg-surface-dark dark:inset-ring-ring-dark;
|
|
4
4
|
|
|
5
5
|
b-card-header {
|
|
6
6
|
@apply flex flex-col gap-1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
b-drawer {
|
|
2
|
-
@apply fixed z-999 flex box-border overflow-hidden rounded-2xl bg-
|
|
2
|
+
@apply fixed z-999 flex box-border overflow-hidden rounded-2xl bg-surface text-font shadow-lg inset-ring-1 inset-ring-ring will-change-transform opacity-0 pointer-events-none dark:bg-surface-dark dark:text-font-dark dark:inset-ring-ring-dark;
|
|
3
3
|
transition:
|
|
4
4
|
transform 0.5s cubic-bezier(0.32, 0.72, 0, 1),
|
|
5
5
|
opacity 0.2s ease;
|
package/src/components/menu.css
CHANGED
|
@@ -149,6 +149,6 @@ b-menu {
|
|
|
149
149
|
|
|
150
150
|
/* Overlay Styles (Popups) */
|
|
151
151
|
.cdk-overlay-container b-menu {
|
|
152
|
-
@apply inset-ring-1 inset-ring-ring bg-
|
|
153
|
-
@apply dark:inset-ring-ring-dark/60 dark:bg-
|
|
152
|
+
@apply inset-ring-1 inset-ring-ring bg-surface shadow-xs;
|
|
153
|
+
@apply dark:inset-ring-ring-dark/60 dark:bg-surface-dark;
|
|
154
154
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
ul[b-select-options] {
|
|
2
|
-
@apply list-none p-1 box-border m-0 relative bg-
|
|
2
|
+
@apply list-none p-1 box-border m-0 relative bg-surface shadow-xs rounded-lg inset-ring-1 inset-ring-ring flex flex-col gap-1 w-full overflow-y-auto dark:bg-surface-dark dark:inset-ring-ring-dark;
|
|
3
3
|
|
|
4
4
|
.no-options-message {
|
|
5
5
|
@apply py-1 px-2 text-sm;
|
|
@@ -81,8 +81,8 @@ b-select {
|
|
|
81
81
|
|
|
82
82
|
ul[b-select-content] {
|
|
83
83
|
@apply list-none box-border m-0 relative flex flex-col w-full overflow-y-auto;
|
|
84
|
-
@apply bg-
|
|
85
|
-
@apply dark:bg-
|
|
84
|
+
@apply bg-surface text-secondary-foreground inset-ring-1 inset-ring-ring shadow-xs;
|
|
85
|
+
@apply dark:bg-surface-dark dark:text-secondary-foreground-dark dark:inset-ring-ring-dark shadow-xs;
|
|
86
86
|
|
|
87
87
|
@apply outline-none;
|
|
88
88
|
max-height: 320px;
|
|
@@ -94,8 +94,8 @@ ul[b-select-content] {
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
input[b-input] {
|
|
97
|
-
@apply outline-none sticky top-0 z-10 bg-
|
|
98
|
-
@apply dark:bg-
|
|
97
|
+
@apply outline-none sticky top-0 z-10 bg-surface min-h-8;
|
|
98
|
+
@apply dark:bg-surface-dark;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
&.b-size-sm {
|
package/src/index.css
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
/* Light theme colors */
|
|
16
16
|
--color-background: #fff;
|
|
17
|
+
--color-surface: #fff;
|
|
17
18
|
--color-font: #0a0a0a;
|
|
18
19
|
--color-primary: #0a0a0a;
|
|
19
20
|
--color-primary-foreground: #fff;
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
|
|
32
33
|
/* Dark theme colors */
|
|
33
34
|
--color-background-dark: #0a0a0a;
|
|
35
|
+
--color-surface-dark: #171717;
|
|
34
36
|
--color-font-dark: #fff;
|
|
35
37
|
--color-bg-dark: #0a0a0a;
|
|
36
38
|
--color-primary-dark: #fff;
|