Skip to content

Commit eded5c4

Browse files
committed
fix some encoding errors
1 parent 9399ce8 commit eded5c4

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

resources/skins/nudus/html_wrapper.html

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@
1111
|| ||
1212
-->
1313
<head>
14+
<meta charset="utf-8">
15+
<meta name="viewport" content="width=device-width, initial-scale=1">
1416
<style>
1517
:root {
1618
--rssguard-base-unit: 10px;
1719
--rssguard-em-unit: .3em;
20+
1821
/* Qt5 fusion border grey */
1922
--rssguard-grey01: #B8B8B8;
2023

@@ -40,12 +43,19 @@
4043
margin-bottom: var(--rssguard-base-unit);
4144
}
4245
body {
43-
/* Another Qt grey */
46+
/*
47+
* Another Qt grey;
48+
* bg required for "newspaper mode"
49+
*/
4450
background-color: #FBFBFB;
4551

4652
box-sizing: border-box;
4753
cursor: default;
4854
font-kerning: normal;
55+
56+
/* redundant? */
57+
-webkit-font-feature-settings: "kern" 1;
58+
font-feature-settings: "kern" 1;
4959
-webkit-text-size-adjust: 100%;
5060
}
5161
h1, h2, h3, h4, h5, h6 {
@@ -166,7 +176,9 @@
166176
list-style-type: lower-roman;
167177
}
168178
img {
179+
/* redundant? */
169180
display: inline-block;
181+
170182
height: auto;
171183
width: auto;
172184
}
@@ -220,6 +232,7 @@
220232
visibility: visible;
221233
}
222234
@media only screen and (max-width: 800px) {
235+
223236
.rssguard-mbody img {
224237
max-width: 100% !important;
225238
}
@@ -264,7 +277,6 @@
264277
height: 100vh;
265278
}
266279
</style>
267-
<meta name="viewport" content="width=device-width, initial-scale=1">
268280
<title>%1</title>
269281
</head>
270282

0 commit comments

Comments
 (0)