Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Removed the min/max height on the diff toggles to slightly improve the layout flow. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | diff-view-toggle-poc |
| Files: | files | file ages | folders |
| SHA3-256: |
42205f9c766bcef5bc7c7238b31755a0 |
| User & Date: | stephan 2021-03-02 04:04:56.598 |
Context
|
2021-03-03
| ||
| 17:28 | The various diff-rendering pages now have toggles to show/hide individual diffs, as discussed in [forum:0f751ad9c8]. ... (check-in: 877246cf3d user: stephan tags: trunk) | |
|
2021-03-02
| ||
| 04:04 | Removed the min/max height on the diff toggles to slightly improve the layout flow. ... (Closed-Leaf check-in: 42205f9c76 user: stephan tags: diff-view-toggle-poc) | |
| 03:51 | Moved the diff toggle button to the right of the diff header line, per forum feedback. Changed the button to a checkbox. Removed the arbitrary heuristics regarding which diffs to show/hide by default - they are now all on by default. ... (check-in: f9d29b9702 user: stephan tags: diff-view-toggle-poc) | |
Changes
Changes to src/default.css.
| ︙ | ︙ | |||
1761 1762 1763 1764 1765 1766 1767 |
}
body.chat #chat-drop-details img {
max-width: 45%;
max-height: 45%;
}
| | < < | 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 |
}
body.chat #chat-drop-details img {
max-width: 45%;
max-height: 45%;
}
input[type="checkbox"].diff-toggle {
float: right;
}
/* Objects in the "desktoponly" class are invisible on mobile */
@media screen and (max-width: 600px) {
.desktoponly {
display: none;
}
}
|
| ︙ | ︙ |