Fossil

Check-in [5c91df7cd3]
Login

Check-in [5c91df7cd3]

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

Overview
Comment:Added CSS to keep command name aliases from wrapping in the /help list.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | help-aliases-unique
Files: files | file ages | folders
SHA3-256: 5c91df7cd3637932f4df878c965280fdbdbf479ebf62202275b7e30ab9c22ced
User & Date: stephan 2022-07-19 21:50:15.800
Context
2022-09-01
01:29
Merge in trunk. Resolve a shadowed var in dispatch.c which led to an assigned-but-not-used warning. ... (Closed-Leaf check-in: a257fbd92e user: stephan tags: help-aliases-unique)
2022-07-19
21:50
Added CSS to keep command name aliases from wrapping in the /help list. ... (check-in: 5c91df7cd3 user: stephan tags: help-aliases-unique)
14:51
Remove some unneeded code. ... (check-in: 83877bb727 user: danield tags: help-aliases-unique)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/default.css.
234
235
236
237
238
239
240



241
242
243
244
245
246
247
div.columns > ul li:first-child {
  margin-top:0px;
}
.columns li {
  break-inside: avoid;
  page-break-inside: avoid;
}



.filetree {
  margin: 1em 0;
  line-height: 1.5;
}
.filetree > ul {
  display: inline-block;
}







>
>
>







234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
div.columns > ul li:first-child {
  margin-top:0px;
}
.columns li {
  break-inside: avoid;
  page-break-inside: avoid;
}
body.help .columns li {
  white-space: nowrap /* keep command name aliases from wrapping */;
}
.filetree {
  margin: 1em 0;
  line-height: 1.5;
}
.filetree > ul {
  display: inline-block;
}