Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add a small bottom margin to the open-in-pikchr links so that the links in pikchr's own user manual don't crowd up directly next to immediately-following pikchrs. It's still a bit tight, but any more margin and it's too much when the following element is _not_ a pikchr. We could maybe solve this better by moving the link to the top of the picture instead of the bottom? |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | omit-cr |
| Files: | files | file ages | folders |
| SHA3-256: |
c0f192102af8cc402498670ef911f258 |
| User & Date: | stephan 2024-10-13 00:50:22.214 |
Context
|
2024-10-14
| ||
| 01:10 | Cherry-pick the show-in-pikchrview feature that was added to the omit-cr branch. ... (check-in: 521da5cd31 user: drh tags: trunk) | |
|
2024-10-13
| ||
| 12:24 | Internal cleanups and docs to the open-in-pikchrshow link bits. No functional or visible changes. ... (check-in: d81c80651a user: stephan tags: omit-cr) | |
| 00:50 | Add a small bottom margin to the open-in-pikchr links so that the links in pikchr's own user manual don't crowd up directly next to immediately-following pikchrs. It's still a bit tight, but any more margin and it's too much when the following element is _not_ a pikchr. We could maybe solve this better by moving the link to the top of the picture instead of the bottom? ... (check-in: c0f192102a user: stephan tags: omit-cr) | |
|
2024-10-12
| ||
| 23:08 | Minor style tweaks to the open-in-pikchrshow links. No functional changes. ... (check-in: 7e97f4999b user: stephan tags: omit-cr) | |
Changes
Changes to src/default.css.
| ︙ | ︙ | |||
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 |
/*Source code for a pikchr*/
box-sizing: border-box;
text-align: left;
}
div.pikchr-src > span {
/*Wrapper for a link to open a pikchr in /pikchrshow*/
margin-top: 0.5em;
font-size: 85%;
}
div.pikchr-src > span::before {
content: "[";
}
div.pikchr-src > span::after {
content: "]";
| > | 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 |
/*Source code for a pikchr*/
box-sizing: border-box;
text-align: left;
}
div.pikchr-src > span {
/*Wrapper for a link to open a pikchr in /pikchrshow*/
margin-top: 0.5em;
margin-bottom: 0.5em;
font-size: 85%;
}
div.pikchr-src > span::before {
content: "[";
}
div.pikchr-src > span::after {
content: "]";
|
| ︙ | ︙ |