@ptlm-azulejo/themes 1.3.0 → 1.3.1
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/base.css +0 -2
- package/package.json +1 -1
- package/preflight.css +0 -48
package/base.css
CHANGED
package/package.json
CHANGED
package/preflight.css
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @ptlm-azulejo/themes — preflight.css
|
|
3
|
-
*
|
|
4
|
-
* Minimal UA wipe for hosts that activate an Azulejo brand preset.
|
|
5
|
-
* Scoped to `.preset-lm` / `.preset-adeo` (the same root class consumers already
|
|
6
|
-
* apply). Storybook also runs full Tailwind Preflight via root `tailwind.css`;
|
|
7
|
-
* this file is what bare consumers get when they only import a preset +
|
|
8
|
-
* component `style.css`.
|
|
9
|
-
*
|
|
10
|
-
* Uses `:where(…)` so component utilities (e.g. `border`, `bg-accent`,
|
|
11
|
-
* `cursor-not-allowed`) keep winning on specificity.
|
|
12
|
-
*
|
|
13
|
-
* Bundled from `base.css` — do not import this file on its own unless you know
|
|
14
|
-
* you need the wipe without tokens.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
:is(.preset-lm, .preset-adeo),
|
|
18
|
-
:is(.preset-lm, .preset-adeo) :where(*, *::before, *::after) {
|
|
19
|
-
box-sizing: border-box;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
:is(.preset-lm, .preset-adeo)
|
|
23
|
-
:where(button, input, select, textarea, optgroup) {
|
|
24
|
-
font: inherit;
|
|
25
|
-
letter-spacing: inherit;
|
|
26
|
-
color: inherit;
|
|
27
|
-
margin: 0;
|
|
28
|
-
padding: 0;
|
|
29
|
-
border: 0 solid transparent;
|
|
30
|
-
border-radius: 0;
|
|
31
|
-
background-color: transparent;
|
|
32
|
-
appearance: none;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
:is(.preset-lm, .preset-adeo)
|
|
36
|
-
:where(button, [type="button"], [type="reset"], [type="submit"]) {
|
|
37
|
-
cursor: pointer;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
:is(.preset-lm, .preset-adeo)
|
|
41
|
-
:where(
|
|
42
|
-
button:disabled,
|
|
43
|
-
[type="button"]:disabled,
|
|
44
|
-
[type="reset"]:disabled,
|
|
45
|
-
[type="submit"]:disabled
|
|
46
|
-
) {
|
|
47
|
-
cursor: default;
|
|
48
|
-
}
|