@basis-ng/styles 0.0.1-alpha.119 → 0.0.1-alpha.120
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
|
@@ -6,12 +6,7 @@ b-command {
|
|
|
6
6
|
background: var(--background, #ffffff);
|
|
7
7
|
box-shadow: 0 0 0.25rem 0.125rem rgba(1, 1, 1, 0.01);
|
|
8
8
|
border-radius: clamp(0rem, var(--radius, 0.5rem), 0.5rem);
|
|
9
|
-
border: 1px solid
|
|
10
|
-
color-mix(
|
|
11
|
-
in srgb,
|
|
12
|
-
var(--foreground, #798194) 10%,
|
|
13
|
-
var(--background, #ffffff)
|
|
14
|
-
);
|
|
9
|
+
border: 1px solid color-mix(in srgb, var(--foreground, #798194) 10%, var(--background, #ffffff));
|
|
15
10
|
display: flex;
|
|
16
11
|
flex-direction: column;
|
|
17
12
|
gap: 0.25rem;
|
package/src/components/input.css
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
input[b-input] {
|
|
3
3
|
/* Base */
|
|
4
4
|
@apply px-3 py-0 text-sm h-8 rounded-size-md;
|
|
5
|
-
@apply bg-
|
|
6
|
-
@apply dark:bg-secondary-dark/40 dark:text-secondary-foreground-dark dark:inset-ring-ring-dark
|
|
5
|
+
@apply bg-transparent text-secondary-foreground inset-ring-1 inset-ring-ring shadow-xs;
|
|
6
|
+
@apply dark:bg-secondary-dark/40 dark:text-secondary-foreground-dark dark:inset-ring-ring-dark;
|
|
7
7
|
|
|
8
8
|
/* Disabled */
|
|
9
9
|
@apply disabled:opacity-50 disabled:cursor-not-allowed;
|
package/src/components/label.css
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
b-label {
|
|
2
2
|
position: relative;
|
|
3
3
|
display: flex;
|
|
4
|
-
--horizontal-padding: clamp(
|
|
5
|
-
1rem,
|
|
6
|
-
calc(0.75rem + var(--radius, 0.5rem) / 2),
|
|
7
|
-
1.5rem
|
|
8
|
-
);
|
|
4
|
+
--horizontal-padding: clamp(1rem, calc(0.75rem + var(--radius, 0.5rem) / 2), 1.5rem);
|
|
9
5
|
|
|
10
6
|
label {
|
|
11
7
|
color: var(--text-color);
|
package/src/components/row.css
CHANGED
|
@@ -11,11 +11,7 @@ b-row {
|
|
|
11
11
|
background: color-mix(
|
|
12
12
|
in srgb,
|
|
13
13
|
var(--background, #ffffff) 50%,
|
|
14
|
-
color-mix(
|
|
15
|
-
in srgb,
|
|
16
|
-
var(--foreground, #798194) 5%,
|
|
17
|
-
var(--background, #ffffff)
|
|
18
|
-
)
|
|
14
|
+
color-mix(in srgb, var(--foreground, #798194) 5%, var(--background, #ffffff))
|
|
19
15
|
);
|
|
20
16
|
color: var(--primary-foreground, #ffffff);
|
|
21
17
|
min-height: 30px;
|
|
@@ -40,11 +36,7 @@ b-row {
|
|
|
40
36
|
&.clickable {
|
|
41
37
|
cursor: pointer;
|
|
42
38
|
&:not(.header) {
|
|
43
|
-
background: color-mix(
|
|
44
|
-
in srgb,
|
|
45
|
-
var(--foreground, #798194) 5%,
|
|
46
|
-
var(--background, #ffffff)
|
|
47
|
-
);
|
|
39
|
+
background: color-mix(in srgb, var(--foreground, #798194) 5%, var(--background, #ffffff));
|
|
48
40
|
}
|
|
49
41
|
}
|
|
50
42
|
}
|