@kobalab/liulian 1.1.8 → 1.1.10
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/ChangeLog.md +8 -0
- package/css/liulian.css +4 -4
- package/lib/html/index.js +1 -1
- package/package.json +1 -1
package/ChangeLog.md
CHANGED
package/css/liulian.css
CHANGED
|
@@ -22,7 +22,7 @@ img {
|
|
|
22
22
|
max-width: 100%;
|
|
23
23
|
}
|
|
24
24
|
code, kbd, tt {
|
|
25
|
-
font-family: Menlo, Consolas, Courier, monospace;
|
|
25
|
+
font-family: Menlo, Consolas, Monaco, Courier, monospace;
|
|
26
26
|
font-size: 100%;
|
|
27
27
|
}
|
|
28
28
|
kbd {
|
|
@@ -97,7 +97,7 @@ pre {
|
|
|
97
97
|
background: #eee;
|
|
98
98
|
overflow: auto;
|
|
99
99
|
overflow-wrap: normal;
|
|
100
|
-
font-family: Osaka-Mono, "BIZ UDゴシック", "MS ゴシック", Courier, monospace;
|
|
100
|
+
font-family: Osaka-Mono, "BIZ UDゴシック", "MS ゴシック", Monaco, Courier, monospace;
|
|
101
101
|
font-size: 100%;
|
|
102
102
|
}
|
|
103
103
|
|
|
@@ -163,7 +163,7 @@ input[disabled] {
|
|
|
163
163
|
}
|
|
164
164
|
textarea {
|
|
165
165
|
padding: 4px;
|
|
166
|
-
font-family: Osaka-Mono, "BIZ UDゴシック", "MS ゴシック", Courier, monospace;
|
|
166
|
+
font-family: Osaka-Mono, "BIZ UDゴシック", "MS ゴシック", Monaco, Courier, monospace;
|
|
167
167
|
font-size: 100%;
|
|
168
168
|
border: solid 1px #999;
|
|
169
169
|
border-radius: 4px;
|
|
@@ -322,7 +322,7 @@ input[type="submit"] {
|
|
|
322
322
|
padding: 2px 0.5em;
|
|
323
323
|
margin: 1px 0;
|
|
324
324
|
min-height: 1em;
|
|
325
|
-
font-family: Osaka-Mono, "MS ゴシック", Courier, monospace;
|
|
325
|
+
font-family: Osaka-Mono, "BIZ UDゴシック", "MS ゴシック", Monaco, Courier, monospace;
|
|
326
326
|
text-decoration: none;
|
|
327
327
|
white-space: pre-wrap;
|
|
328
328
|
color: #666;
|
package/lib/html/index.js
CHANGED
|
@@ -92,7 +92,7 @@ module.exports = class HTML {
|
|
|
92
92
|
+ '<meta property="og:title" '
|
|
93
93
|
+ `content="${cref(this.title())}">\n`
|
|
94
94
|
+ '<meta property="og:image" content="'
|
|
95
|
-
+ this._req.fullUrl(fixpath(this._.icon
|
|
95
|
+
+ this._req.fullUrl(fixpath(this._.icon))
|
|
96
96
|
+ '">\n';
|
|
97
97
|
|
|
98
98
|
const meta = this._.meta.map(attr=>{
|