Fossil

Check-in [064c677a70]
Login

Check-in [064c677a70]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Using the new "forum" page type to simplify repetitive CSS rules.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | default-css-cleanups
Files: files | file ages | folders
SHA3-256: 064c677a70f25d8f6218f60635fcb1130b2850825e7db534f537de618d5462a8
User & Date: wyoung 2020-11-05 23:41:51.810
References
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)
Context
2020-11-05
23:42
Removed obsolete references to CSS class div.div.forumHierRoot: no current code uses these. ... (check-in: 361b9e4e31 user: wyoung tags: default-css-cleanups)
23:41
Using the new "forum" page type to simplify repetitive CSS rules. ... (check-in: 064c677a70 user: wyoung tags: default-css-cleanups)
23:15
Added a parameter to style_footer() and renamed it to match its actual function (style_body_and_footer()) so we can add a CSS class to each page that indicates which major Fossil feature served the page, so we can have module-specific CSS. ... (check-in: ef5424b683 user: wyoung tags: default-css-cleanups)
Changes
Unified Diff Ignore Whitespace Patch
Changes to skins/default/css.txt.
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
  border: 1px solid #ccc;
  border-radius: 5px;
}


/* Forum */

div.forumPosts a:visited {
  color: #6A7F94;
}

div.forumHierRoot blockquote, div.forumHier blockquote, div.forumEdit blockquote, div.forumTime blockquote, div.forumTimeline blockquote {
  background-color: rgba(65, 131, 196, 0.1);
  border-left: 3px solid #254769;
  padding: .1em 1em;
}


/* Tickets */







|



|







170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
  border: 1px solid #ccc;
  border-radius: 5px;
}


/* 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.
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
  padding-right: 1ex;
  margin-top: 1ex;
}
div.forumHier, div.forumTime, div.forumHierRoot {
  display: flex;
  flex-direction: column;
}
div.forumHier > div > form,
div.forumTime > div > form,
div.forumHierRoot > 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;







<
<
|







760
761
762
763
764
765
766


767
768
769
770
771
772
773
774
  padding-right: 1ex;
  margin-top: 1ex;
}
div.forumHier, div.forumTime, div.forumHierRoot {
  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;