@rokkit/themes 1.0.0-next.52 → 1.0.0-next.54
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 +3 -3
- package/src/base/molecules.css +1 -1
- package/src/base/organisms.css +9 -3
- package/src/rokkit/molecules.css +1 -1
- package/src/base/test.py +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rokkit/themes",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.54",
|
|
4
4
|
"description": "Themes for use with rokkit components.",
|
|
5
5
|
"author": "Jerry Thomas <me@jerrythomas.name>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"typescript": "^5.2.2",
|
|
21
21
|
"vite": "^4.4.9",
|
|
22
22
|
"vitest": "~0.34.6",
|
|
23
|
-
"@rokkit/core": "1.0.0-next.
|
|
24
|
-
"shared-config": "1.0.0-next.
|
|
23
|
+
"@rokkit/core": "1.0.0-next.54",
|
|
24
|
+
"shared-config": "1.0.0-next.54"
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
27
|
"src"
|
package/src/base/molecules.css
CHANGED
|
@@ -92,7 +92,7 @@ input-field textarea,
|
|
|
92
92
|
input-field select,
|
|
93
93
|
input-field > field > :not(icon) {
|
|
94
94
|
@apply px-3;
|
|
95
|
-
@apply flex-grow outline-none min-h-
|
|
95
|
+
@apply flex-grow outline-none min-h-9 leading-loose;
|
|
96
96
|
@apply bg-skin-subtle text-skin-800;
|
|
97
97
|
}
|
|
98
98
|
input-field > label {
|
package/src/base/organisms.css
CHANGED
|
@@ -30,18 +30,24 @@ drop-down {
|
|
|
30
30
|
@apply overflow-visible cursor-pointer;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
input-field field {
|
|
34
|
+
@apply gap-1px;
|
|
35
|
+
}
|
|
36
|
+
input-field field icon {
|
|
37
|
+
@apply w-9 h-9 bg-skin-subtle text-skin-800;
|
|
38
|
+
}
|
|
39
|
+
|
|
33
40
|
input-field > field > input-select {
|
|
34
41
|
@apply px-0;
|
|
35
42
|
}
|
|
36
43
|
|
|
37
44
|
input-select selected-item > icon,
|
|
38
45
|
drop-down > button > span > icon {
|
|
39
|
-
@apply w-
|
|
46
|
+
@apply w-9 h-full;
|
|
40
47
|
}
|
|
41
|
-
|
|
42
48
|
input-select > selected-item,
|
|
43
49
|
drop-down > button > span {
|
|
44
50
|
/* @apply bg-skin-base pl-3; */
|
|
45
|
-
@apply pl-3 min-h-
|
|
51
|
+
@apply pl-3 min-h-9 gap-2 items-center normal-case;
|
|
46
52
|
@apply rounded text-skin-800;
|
|
47
53
|
}
|
package/src/rokkit/molecules.css
CHANGED
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
|
|
87
87
|
/* Styles for 'rating' class */
|
|
88
88
|
.rokkit rating {
|
|
89
|
-
@apply text-skin-600 text-xl h-
|
|
89
|
+
@apply text-skin-600 text-xl h-9 justify-center rounded focus:outline focus:outline-secondary;
|
|
90
90
|
}
|
|
91
91
|
.rokkit rating > icon {
|
|
92
92
|
@apply w-8;
|