Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | More generic font family in the help files. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 38462acc17e824d8d346ab474a9b5531c0966659 |
User & Date: | johnfound 2018-12-05 08:34:28 |
Context
2018-12-05
| ||
08:57 | TeX to HTML tool TTH updated to v4.12 check-in: 1d5ab4479e user: johnfound tags: trunk | |
08:34 | More generic font family in the help files. check-in: 38462acc17 user: johnfound tags: trunk | |
2018-07-06
| ||
08:12 | Fixed small regression in AsmEdit related to the word separator characters. check-in: d5b70f0b8f user: johnfound tags: trunk | |
Changes
Changes to doc/help.css.
1
2
3
4
5
6
7
8
9
10
11
12
..
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* Common layout styles */ /* They will define the common web site appearance */ body { font-family: Verdana, Helvetica, sans-serif; font-size: 16px; background-color: white; } div.content, body>div{ text-align: justify; ................................................................................ p.uli { display: list-item; list-style: disc inside; } code, tt { font-family: "Courier New", monospace; font-size: 16px; font-weight: bold; padding: 0px 3px 0px 3px; text-indent: 0px; } code.block { padding: 1em; margin: 0px; font-family: "Courier New", monospace; font-size: 16px; font-weight: bold; overflow: auto; max-width: 150%; white-space: pre; |
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
..
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/* Common layout styles */
/* They will define the common web site appearance */
body {
font-family: sans-serif;
font-size: 16px;
background-color: white;
}
div.content, body>div{
text-align: justify;
................................................................................
p.uli {
display: list-item;
list-style: disc inside;
}
code, tt {
font-family: monospace;
font-size: 16px;
font-weight: bold;
padding: 0px 3px 0px 3px;
text-indent: 0px;
}
code.block {
padding: 1em;
margin: 0px;
font-family: monospace;
font-size: 16px;
font-weight: bold;
overflow: auto;
max-width: 150%;
white-space: pre;
|
Changes to doc/x86/style/style.css.
1 2 3 4 5 6 7 8 9 10 ... 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 ... 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
* { font-family: Verdana, Helvetica, sans-serif; font-size: 16px; margin: 0; padding: 0; } body { ................................................................................ td.instruction_set_reference_box { padding: 0.4em; } span { font-family: "Courier New", monospace; } span.keyword { color: #00f; } ................................................................................ span.number { color: #f00; } code { font-family: "Courier New", monospace; } pre { font-family: "Courier New", monospace; margin: 0; padding: 0; } |
| | | | |
1 2 3 4 5 6 7 8 9 10 ... 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 ... 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
* { font-family: sans-serif; font-size: 16px; margin: 0; padding: 0; } body { ................................................................................ td.instruction_set_reference_box { padding: 0.4em; } span { font-family: monospace; } span.keyword { color: #00f; } ................................................................................ span.number { color: #f00; } code { font-family: monospace; } pre { font-family: monospace; margin: 0; padding: 0; } |