Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | The CSS rule cleanups in [064c677a70] were mistargeting their elements now that their selector's parent piece is not their immediate parent. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | default-css-cleanups |
| Files: | files | file ages | folders |
| SHA3-256: |
a46b4ceb74f03ae10a40c6bf30302afa |
| User & Date: | wyoung 2020-11-05 23:49:59.686 |
Context
|
2020-11-07
| ||
| 13:25 | Rename the "style_body_and_footer()" interface to "style_finish_page()" and add a more detailed header comment to the implementation. ... (Closed-Leaf check-in: 942b2076c6 user: drh tags: default-css-cleanups) | |
|
2020-11-05
| ||
| 23:49 | The CSS rule cleanups in [064c677a70] were mistargeting their elements now that their selector's parent piece is not their immediate parent. ... (check-in: a46b4ceb74 user: wyoung tags: default-css-cleanups) | |
| 23:46 | Ditto forumHier: unused! ... (check-in: 2de7dbbfcf user: wyoung tags: default-css-cleanups) | |
Changes
Changes to skins/default/css.txt.
| ︙ | ︙ | |||
174 175 176 177 178 179 180 |
/* Forum */
.forum a:visited {
color: #6A7F94;
}
| | | 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
/* Forum */
.forum a:visited {
color: #6A7F94;
}
.forum blockquote {
background-color: rgba(65, 131, 196, 0.1);
border-left: 3px solid #254769;
padding: .1em 1em;
}
/* Tickets */
|
| ︙ | ︙ |
Changes to src/default.css.
| ︙ | ︙ | |||
758 759 760 761 762 763 764 | border: 1px solid black; padding-left: 1ex; padding-right: 1ex; margin-top: 1ex; display: flex; flex-direction: column; } | | | 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 |
border: 1px solid black;
padding-left: 1ex;
padding-right: 1ex;
margin-top: 1ex;
display: flex;
flex-direction: column;
}
.forum div > form {
margin: 0.5em 0;
}
.forum-post-collapser {
/* Common style for the bottom-of-post and right-of-post
expand/collapse widgets. */
font-size: 0.8em;
padding: 0;
|
| ︙ | ︙ |