Differences From Artifact [56aab62a28]:
- File
www/webui.wiki
— part of check-in
[56c7c2cb13]
at
2024-02-04 04:42:03
on branch inskinerator-modern-backport
— Added three new block-element classes to the skin to replace use of
"blockquote" with semantic alternatives:
- "indent" for cases where the only purpose was to indent things
- "blockquote" where you want an actual block quote in a wiki doc and thus can't use a "blockquote" element due to the historical misuse of this tag, preventing us from doing the same for it as we do for MD
- "sidebar" when the reason you wanted an indented paragraph was to create a sidebar; this is styled much like a blockquote in MD (or the new "blockquote" class in wiki docs) but floats to the right.
Using all three of these in the remaining www/ docs that still used explicit "blockquote" tags.
(If you're wondering why the prior commit claims to have dealt with all of these tags when this commit belies that, it's because this work was done en masse, then split up into two related commits to keep the commit messages more on-point. It was easier to commit these two chunks of work in this order. It would have required a complicated dance with the stash to commit them in the more logical order.) (user: wyoung size: 8360) [more...]
To Artifact [72cfaeb9b6]:
- File www/webui.wiki — part of check-in [d8e2a3b874] at 2024-02-18 13:25:57 on branch trunk — The skin's new "indent" class for block elements doesn't apply to "p" tags due to CSS cascading rules. Changed them to divs to sidestep this limitation. Also fixed another instance of bold formatting interfering with abutting italics. (user: wyoung size: 8364)
| ︙ | ︙ | |||
30 31 32 33 34 35 36 | As an example of how useful this web interface can be, the entire [./index.wiki | Fossil website], including the document you are now reading, is rendered using the Fossil web interface, with no enhancements, and little customization. | | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | As an example of how useful this web interface can be, the entire [./index.wiki | Fossil website], including the document you are now reading, is rendered using the Fossil web interface, with no enhancements, and little customization. <div class="indent"> <b>Key point:</b> <i>The Fossil website is just a running instance of Fossil! </div> Note also that because Fossil is a distributed system, you can run the web interface on your local machine while off network (for example, while on an airplane) including making changes to wiki pages and/or trouble ticket, then synchronize with your co-workers after you reconnect. When you clone a Fossil repository, you don't just get the project source code, you get the entire project |
| ︙ | ︙ |