@w0s/base.css 1.1.0 → 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 +7 -5
- package/package.json +1 -1
package/dist/base.css
CHANGED
|
@@ -65,6 +65,7 @@ menu,
|
|
|
65
65
|
ol,
|
|
66
66
|
ul {
|
|
67
67
|
padding-inline-start: unset;
|
|
68
|
+
list-style-type: none;
|
|
68
69
|
}
|
|
69
70
|
td,
|
|
70
71
|
th {
|
|
@@ -89,6 +90,12 @@ legend {
|
|
|
89
90
|
iframe {
|
|
90
91
|
border-style: unset;
|
|
91
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
|
+
}
|
|
92
99
|
a:not(:any-link) {
|
|
93
100
|
color: unset; /* for Dark Reader, iOS Firefox with Website Dark Mode <https://github.com/darkreader/darkreader/issues/9836> */
|
|
94
101
|
}
|
|
@@ -125,11 +132,6 @@ textarea {
|
|
|
125
132
|
pre {
|
|
126
133
|
overflow-inline: auto;
|
|
127
134
|
}
|
|
128
|
-
menu,
|
|
129
|
-
ol,
|
|
130
|
-
ul {
|
|
131
|
-
list-style-type: none;
|
|
132
|
-
}
|
|
133
135
|
table {
|
|
134
136
|
border-collapse: collapse;
|
|
135
137
|
}
|