@w0s/base.css 1.1.0 → 1.3.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 +9 -5
- package/package.json +3 -3
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
|
}
|
|
@@ -113,6 +120,8 @@ textarea {
|
|
|
113
120
|
}
|
|
114
121
|
:root {
|
|
115
122
|
box-sizing: border-box;
|
|
123
|
+
overflow-wrap: anywhere;
|
|
124
|
+
text-autospace: ideograph-alpha;
|
|
116
125
|
}
|
|
117
126
|
*,
|
|
118
127
|
::before,
|
|
@@ -125,11 +134,6 @@ textarea {
|
|
|
125
134
|
pre {
|
|
126
135
|
overflow-inline: auto;
|
|
127
136
|
}
|
|
128
|
-
menu,
|
|
129
|
-
ol,
|
|
130
|
-
ul {
|
|
131
|
-
list-style-type: none;
|
|
132
|
-
}
|
|
133
137
|
table {
|
|
134
138
|
border-collapse: collapse;
|
|
135
139
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w0s/base.css",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Base CSS file used on `w0s.jp`",
|
|
5
5
|
"homepage": "https://github.com/SaekiTominaga/base.css#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"url": "git+https://github.com/SaekiTominaga/base.css.git"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"dev": "http-server -o
|
|
21
|
+
"dev": "http-server -o demo -c-1",
|
|
22
22
|
"prebuild": "npm run lint && rimraf -g dist",
|
|
23
23
|
"build": "postcss src/base.css -d dist",
|
|
24
24
|
"postbuild": "prettier --config ./.prettierrc.mjs --ignore-path .prettierignore -w \"dist/**/*.css\"",
|
|
25
|
-
"lint": "stylelint
|
|
25
|
+
"lint": "stylelint demo/**/*.css src/**/*.css"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@w0s/stylelint-config": "^4.17.0",
|