Differences From Artifact [4b5d5ceb37]:
- File src/style.fileedit.css — part of check-in [e7c348f1d9] at 2020-08-12 11:44:48 on branch trunk — Minor style consistency/layout tweaks to wikiedit and fileedit. (user: stephan size: 5219) [more...]
To Artifact [70130b5ecd]:
- File src/style.fileedit.css — part of check-in [c515e5fd9f] at 2020-08-24 22:20:00 on branch misc-js-experiments — Moved C routines which emit fossil.XYZ JS APIs from style.c to builtin.c, and renamed appropriately. Added flag to output_text_with_line_numbers() to disable emit of JS (needed for fileedit preview, at a minimum). The experimental emitting of all fossil.XYZ APIs at once is now limited to bundled mode, as that's the only place it's potentially of benefit. (user: stephan size: 5533) [more...]
| ︙ | ︙ | |||
218 219 220 221 222 223 224 225 |
white-space: nowrap;
}
body.fileedit #fileedit-edit-status span.links > *::before {
content: "[";
}
body.fileedit #fileedit-edit-status span.links > *::after {
content: "]";
}
| > > > > > > > > > | 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
white-space: nowrap;
}
body.fileedit #fileedit-edit-status span.links > *::before {
content: "[";
}
body.fileedit #fileedit-edit-status span.links > *::after {
content: "]";
}
/* JS selection of line numbers cannot work in preview mode,
so disable the UI indications which imply that it does
something... */
body.fileedit table.numbered-lines td.line-numbers > span {
cursor: unset;
}
body.fileedit table.numbered-lines td.line-numbers > span:hover {
background-color: inherit;
}
|