Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Several padding tweaks to ensure proper line/code alignment in all of the skins. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | line-number-selection |
| Files: | files | file ages | folders |
| SHA3-256: |
e0e5449aa43f7da7b960e1926091c82d |
| User & Date: | stephan 2020-08-16 05:10:47.249 |
Context
|
2020-08-16
| ||
| 08:13 | Removed a now-unused CSS class. ... (Closed-Leaf check-in: 1cb792fd19 user: stephan tags: line-number-selection) | |
| 05:10 | Several padding tweaks to ensure proper line/code alignment in all of the skins. ... (check-in: e0e5449aa4 user: stephan tags: line-number-selection) | |
| 04:08 | Gave the BLOCKQUOTE which surrounds file content the file-content CSS class and trimmed its margins a bit. Fixed the truncated-by-one file extension uses in the language-XYZ tag in non-line-numbered file content, caused by refactoring from this branch. ... (check-in: 62b682bded user: stephan tags: line-number-selection) | |
Changes
Changes to skins/ardoise/css.txt.
| ︙ | ︙ | |||
570 571 572 573 574 575 576 577 578 579 580 581 582 583 |
margin: 0 .2rem;
font-size: 90%;
white-space: nowrap;
background: #000;
border: 2px solid #bbb;
border-radius: 5px
}
pre > code {
padding: 1rem 1.5rem;
white-space: pre
}
td,
th {
padding: 1px 5px;
| > > > | 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 |
margin: 0 .2rem;
font-size: 90%;
white-space: nowrap;
background: #000;
border: 2px solid #bbb;
border-radius: 5px
}
table.numbered-lines td.file-content > pre {
margin-top: -2px/*offset CODE tag border*/;
}
pre > code {
padding: 1rem 1.5rem;
white-space: pre
}
td,
th {
padding: 1px 5px;
|
| ︙ | ︙ |
Changes to src/default.css.
| ︙ | ︙ | |||
1175 1176 1177 1178 1179 1180 1181 |
table.numbered-lines > tbody > tr > td {
font-family: inherit;
font-size: inherit;
line-height: inherit;
white-space: inherit;
margin: 0;
vertical-align: top;
| | > > > > | < > > > > > > > > > > | | 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 |
table.numbered-lines > tbody > tr > td {
font-family: inherit;
font-size: inherit;
line-height: inherit;
white-space: inherit;
margin: 0;
vertical-align: top;
padding: 0.25em 0 0 0 /*prevents slight overlap at top */;
}
table.numbered-lines td.line-numbers {
width: 4.5em;
}
table.numbered-lines td.line-numbers > span:first-of-type {
margin-top: 0.25em/*must match top PADDING of
td.file-content > pre > code*/;
}
table.numbered-lines td.line-numbers > span {
display: block;
margin: 0;
padding: 0;
line-height: inherit;
font-size: inherit;
font-family: inherit;
cursor: pointer;
white-space: pre;
margin-right: 2px/*keep selection from nudging the right column */;
text-align: right;
}
table.numbered-lines td.line-numbers > span:hover {
background-color: rgba(112, 112, 112, 0.25);
}
table.numbered-lines td.file-content {
padding-left: 0.25em;
}
table.numbered-lines td.file-content > pre,
table.numbered-lines td.file-content > pre > code {
margin: 0;
padding: 0;
line-height: inherit;
font-size: inherit;
font-family: inherit;
white-space: pre;
display: block/*necessary for certain skins!*/;
}
table.numbered-lines td.file-content > pre {
}
table.numbered-lines td.file-content > pre > code {
overflow: auto;
padding-left: 0.5em;
padding-right: 0.5em;
padding-top: 0.25em/*any top padding here must match the top MARGIN of
td.line-numbers's first span child or the
lines/code will get misaligned. */;
padding-bottom: 0.25em/*prevents a slight overlap at bottom from
triggering a scroller*/;
}
table.numbered-lines td.file-content > pre > code > * {
/* Defense against syntax highlighters indirectly messing up these
properties... */
line-height: inherit;
font-size: inherit;
font-family: inherit;
|
| ︙ | ︙ | |||
1267 1268 1269 1270 1271 1272 1273 |
border-size: 1px;
border-style: dotted;
border-color: rgb( 127, 127, 127, 0.5 );
}
blockquote.file-content {
/* file content block in the /file page */
| | | 1280 1281 1282 1283 1284 1285 1286 1287 1288 |
border-size: 1px;
border-style: dotted;
border-color: rgb( 127, 127, 127, 0.5 );
}
blockquote.file-content {
/* file content block in the /file page */
margin: 0 1em;
}
|