@1001-digital/styles 1.3.0 → 2.0.0
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 +1 -1
- package/src/base/reset.css +1 -1
- package/src/index.css +3 -0
- package/src/prose.css +2 -2
- package/src/variables/components/alert.css +2 -2
- package/src/variables/components/color-picker.css +14 -0
- package/src/variables/components/dialog.css +1 -1
- package/src/variables/components/index.css +1 -0
package/package.json
CHANGED
package/src/base/reset.css
CHANGED
package/src/index.css
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
* CSS Layers Order Definition
|
|
3
3
|
* This establishes the cascade priority:
|
|
4
4
|
* variables, reset < base < components < utilities
|
|
5
|
+
*
|
|
6
|
+
* The `components` layer is declared here for ordering but populated
|
|
7
|
+
* by Vue SFC <style> blocks (via @layer components { ... }).
|
|
5
8
|
*/
|
|
6
9
|
@layer variables, reset, base, components, utilities;
|
|
7
10
|
|
package/src/prose.css
CHANGED
|
@@ -121,8 +121,8 @@
|
|
|
121
121
|
figure > img,
|
|
122
122
|
p > img,
|
|
123
123
|
> img {
|
|
124
|
-
border: var(--image-border);
|
|
125
|
-
border-radius: var(--image-border-radius);
|
|
124
|
+
border: var(--prose-image-border, none);
|
|
125
|
+
border-radius: var(--prose-image-border-radius, 0);
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
figure:has(img),
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
--alert-color: var(--color);
|
|
3
|
-
--alert-background
|
|
3
|
+
--alert-background: transparent;
|
|
4
4
|
--alert-border-color: var(--border-color);
|
|
5
5
|
|
|
6
6
|
--alert-info-color: var(--alert-color);
|
|
7
|
-
--alert-info-background-color: var(--alert-background
|
|
7
|
+
--alert-info-background-color: var(--alert-background);
|
|
8
8
|
--alert-info-border-color: var(--alert-border-color);
|
|
9
9
|
|
|
10
10
|
--alert-error-color: var(--error);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--color-picker-area-height: 10rem;
|
|
3
|
+
--color-picker-thumb-size: var(--slider-thumb-size);
|
|
4
|
+
--color-picker-thumb-background: var(--white);
|
|
5
|
+
--color-picker-track-size: var(--slider-track-size);
|
|
6
|
+
--color-picker-track-radius: var(--slider-track-radius);
|
|
7
|
+
--color-picker-checkerboard: var(--gray-z-3);
|
|
8
|
+
--color-picker-trigger-max-width: 10rem;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.color-picker-popover {
|
|
12
|
+
--popover-min-width: 24rem;
|
|
13
|
+
--popover-width: 24rem;
|
|
14
|
+
}
|