@w0s/base.css 1.0.1 → 1.2.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/dist/base.css +19 -5
- package/package.json +1 -1
package/dist/base.css
CHANGED
|
@@ -23,6 +23,18 @@ pre {
|
|
|
23
23
|
text-wrap-mode: unset;
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
+
dialog {
|
|
27
|
+
border-style: unset;
|
|
28
|
+
padding: unset;
|
|
29
|
+
}
|
|
30
|
+
dialog:modal {
|
|
31
|
+
max-block-size: unset;
|
|
32
|
+
max-inline-size: unset;
|
|
33
|
+
}
|
|
34
|
+
[popover] {
|
|
35
|
+
border-style: unset;
|
|
36
|
+
padding: unset;
|
|
37
|
+
}
|
|
26
38
|
:is(cite, dfn, em):lang(ja) {
|
|
27
39
|
font-style: unset;
|
|
28
40
|
}
|
|
@@ -53,6 +65,7 @@ menu,
|
|
|
53
65
|
ol,
|
|
54
66
|
ul {
|
|
55
67
|
padding-inline-start: unset;
|
|
68
|
+
list-style-type: none;
|
|
56
69
|
}
|
|
57
70
|
td,
|
|
58
71
|
th {
|
|
@@ -77,6 +90,12 @@ legend {
|
|
|
77
90
|
iframe {
|
|
78
91
|
border-style: unset;
|
|
79
92
|
}
|
|
93
|
+
summary:first-of-type {
|
|
94
|
+
list-style-type: none;
|
|
95
|
+
}
|
|
96
|
+
summary::-webkit-details-marker {
|
|
97
|
+
display: none; /* for Safari 18.3- */
|
|
98
|
+
}
|
|
80
99
|
a:not(:any-link) {
|
|
81
100
|
color: unset; /* for Dark Reader, iOS Firefox with Website Dark Mode <https://github.com/darkreader/darkreader/issues/9836> */
|
|
82
101
|
}
|
|
@@ -113,11 +132,6 @@ textarea {
|
|
|
113
132
|
pre {
|
|
114
133
|
overflow-inline: auto;
|
|
115
134
|
}
|
|
116
|
-
menu,
|
|
117
|
-
ol,
|
|
118
|
-
ul {
|
|
119
|
-
list-style-type: none;
|
|
120
|
-
}
|
|
121
135
|
table {
|
|
122
136
|
border-collapse: collapse;
|
|
123
137
|
}
|