Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a minor glitch. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | accordion-experiments-2 |
| Files: | files | file ages | folders |
| SHA3-256: |
343f31f9bf9ae4623b27cefba0921335 |
| User & Date: | florian 2020-04-08 14:17:00.000 |
Context
|
2020-04-08
| ||
| 14:59 | Merge the accordion section enhancement to trunk. ... (check-in: 22d28547b7 user: drh tags: trunk) | |
| 14:17 | Fix a minor glitch. ... (Closed-Leaf check-in: 343f31f9bf user: florian tags: accordion-experiments-2) | |
| 14:07 | Use dynamically created foreground image elements instead of CSS background images to indicate the status and available actions for the accordion, so they are visible by default for printouts and PDFs, invisible for noscript clients, and enhance compatibility with most skins (Xekri's "justify-content: space-around;" is crunchy, however). ... (check-in: 1006de1e66 user: florian tags: accordion-experiments-2) | |
Changes
Changes to src/default_css.txt.
| ︙ | ︙ | |||
816 817 818 819 820 821 822 |
cursor: pointer;
}
.accordion_btn {
display: inline-block;
width: 16px;
height: 16px;
margin-right: .5em;
| | | 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 |
cursor: pointer;
}
.accordion_btn {
display: inline-block;
width: 16px;
height: 16px;
margin-right: .5em;
vertical-align: middle;
}
// Note: the order of the next 3 entries should be
// maintained for the hierarchical cascade to work.
.accordion > .accordion_btn_plus {
display: none;
}
.accordion_closed > .accordion_btn_minus {
|
| ︙ | ︙ |