Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor CSS tweak for mobile browsers. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bfd79af0582ed395b0f025601dadf3c2 |
User & Date: | stephan 2020-08-01 22:25:41.520 |
Context
2020-08-01
| ||
23:38 | fossil.message() and friends now use local timestamps instead of UTC. Fixed a bug in wikiedit which caused a newly-created page to disappear from the page selection list after it was saved. Other minor cleanups in adjacent code. ... (check-in: 3dc4613d user: stephan tags: trunk) | |
22:25 | Minor CSS tweak for mobile browsers. ... (check-in: bfd79af0 user: stephan tags: trunk) | |
21:31 | Ported several features between wikiedit and fileedit, improving them both a bit. ... (check-in: 0d5006be user: stephan tags: trunk) | |
Changes
Changes to src/style.wikiedit.css.
︙ | ︙ | |||
38 39 40 41 42 43 44 45 46 47 48 49 50 51 | vertical-align: middle; margin: 0.5em; } body.wikiedit .tab-container > .tabs > .tab-panel > .wikiedit-options > .input-with-label { vertical-align: middle; margin: 0.5em; } body.wikiedit .wikiedit-options > div > * { margin: 0.25em; } body.wikiedit .wikiedit-options.flex-container.flex-row { align-items: first baseline; } body.wikiedit .WikiList { | > > > | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | vertical-align: middle; margin: 0.5em; } body.wikiedit .tab-container > .tabs > .tab-panel > .wikiedit-options > .input-with-label { vertical-align: middle; margin: 0.5em; } body.wikiedit label { display: inline; /* some skins set label display to block! */ } body.wikiedit .wikiedit-options > div > * { margin: 0.25em; } body.wikiedit .wikiedit-options.flex-container.flex-row { align-items: first baseline; } body.wikiedit .WikiList { |
︙ | ︙ | |||
74 75 76 77 78 79 80 81 82 83 84 85 86 87 | overflow: auto; } body.wikiedit .WikiList fieldset { padding: 0.25em; border-width: 1px /* Ardoise skin sets this to 0 */; min-width: 6em; border-style: inset; } body.wikiedit .WikiList legend { font-size: 90%; margin: 0 0 0 0.5em; } body.wikiedit .WikiList fieldset > :not(legend) { /* Stretch page selection list when it's empty or only has short page names */ | > > > | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | overflow: auto; } body.wikiedit .WikiList fieldset { padding: 0.25em; border-width: 1px /* Ardoise skin sets this to 0 */; min-width: 6em; border-style: inset; } body.wikiedit .WikiList label { margin: 0 0.5em; } body.wikiedit .WikiList legend { font-size: 90%; margin: 0 0 0 0.5em; } body.wikiedit .WikiList fieldset > :not(legend) { /* Stretch page selection list when it's empty or only has short page names */ |
︙ | ︙ |