Overview
Comment: | Fix styles for note permlinks in individual article pages |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8e848ec1e1d34c8cce3e44b24ccab910 |
User & Date: | joel on 2018-09-26 03:39:01 |
Other Links: | manifest | tags |
Context
2019-02-09
| ||
19:32 | Rename template-html.rkt → snippets-html.rkt check-in: 99fe3246 user: joel tags: trunk | |
2018-09-26
| ||
03:39 | Fix styles for note permlinks in individual article pages check-in: 8e848ec1 user: joel tags: trunk | |
02:57 | Make note author bylines italic check-in: 6069a320 user: joel tags: trunk | |
Changes
Modified template-html.rkt from [f7768941] to [38947f14].
︙ | |||
140 141 142 143 144 145 146 | 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | - + | (define (html$-note-in-article id date contents author author-url) (define maybe-author-class? (cond [(or (string=? author default-authorname) (string=? author "")) "by-proprietor"] [else ""])) ◊string-append{<div class="note ◊maybe-author-class? u-comment" id="◊|id|"> |
︙ |
Modified web-extra/martin.css.pp from [8449f20b] to [de63ae31].
︙ | |||
149 150 151 152 153 154 155 | 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | - - - + | transition: filter 0.25s ease; } main header:hover h1 { color: ◊color-bodytext; /* transition: color 0.25s ease; */ } |
︙ | |||
255 256 257 258 259 260 261 | 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | - + | a.rel-bookmark::after { content: '\f894'; margin-left: 4px; font-style: normal; color: #809102; } a.rel-bookmark.note-permlink::after { |
︙ |