Fossil

Check-in [2ba7a7d8b2]
Login

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

Overview
Comment:Made ticket report table border rounding consistent with MD tables. This requires a change to default.css, which had a conflicting style. If there are other skins where border-collapse mode is desired, this needs to be reapplied within that skin.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | inskinerator-modern-backport
Files: files | file ages | folders
SHA3-256: 2ba7a7d8b2352fcfb36a051670309a3fe1bf2a530585369c70dc914f8d1e6499
User & Date: wyoung 2024-01-25 21:09:57.333
Context
2024-01-25
21:59
Collected the "nomargins" handling for forum posts and ticket comments together, then defined a new one-off style to do the same thing on arbitrary blocks. Tested it out on the index.wiki page's sidebar. check-in: d55d9b2a42 user: wyoung tags: inskinerator-modern-backport
21:09
Made ticket report table border rounding consistent with MD tables. This requires a change to default.css, which had a conflicting style. If there are other skins where border-collapse mode is desired, this needs to be reapplied within that skin. check-in: 2ba7a7d8b2 user: wyoung tags: inskinerator-modern-backport
20:48
Backed out indent levels for tickets as well; this should've been included in [4dbd66ad]. check-in: 4fb177e62a user: wyoung tags: inskinerator-modern-backport
Changes
Unified Diff Ignore Whitespace Patch
Changes to skins/default/css.txt.
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
.doc li p, .doc li pre, .markdown li p, .markdown li pre {
  margin-left: 0;
}

.doc table, .markdown table {
  background-color: #f0f5f9;
  border: 1px solid #a7c2dc;
  border-radius: 6px;
  padding: 6px;
}

.doc th, .markdown th {
  border-bottom: 1px solid #dee8f2;
  padding-bottom: 4px;
  padding-right: 6px;







|







278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
.doc li p, .doc li pre, .markdown li p, .markdown li pre {
  margin-left: 0;
}

.doc table, .markdown table {
  background-color: #f0f5f9;
  border: 1px solid #a7c2dc;
  border-radius: 0.5em;
  padding: 6px;
}

.doc th, .markdown th {
  border-bottom: 1px solid #dee8f2;
  padding-bottom: 4px;
  padding-right: 6px;
304
305
306
307
308
309
310
311
312

313
314
315
316
317
318
319
}


/* Tickets */

table.report {
  cursor: auto;
  border-radius: 5px;
  border: 1px solid #ccc;

  margin: 1em 0;
}
.report td, .report th {
 border: 0;
 font-size: .8em;
 padding: 10px;
}







<

>







304
305
306
307
308
309
310

311
312
313
314
315
316
317
318
319
}


/* Tickets */

table.report {
  cursor: auto;

  border: 1px solid #ccc;
  border-radius: 0.5em;
  margin: 1em 0;
}
.report td, .report th {
 border: 0;
 font-size: .8em;
 padding: 10px;
}
Changes to src/default.css.
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
  padding: 0;
  width: 125px;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}
table.report {
  border-collapse:collapse;
  border: 1px solid #999;
  margin: 1em 0 1em 0;
  cursor: pointer;
}
td.rpteditex {
  border-width: thin;
  border-color: #000000;







<







494
495
496
497
498
499
500

501
502
503
504
505
506
507
  padding: 0;
  width: 125px;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}
table.report {

  border: 1px solid #999;
  margin: 1em 0 1em 0;
  cursor: pointer;
}
td.rpteditex {
  border-width: thin;
  border-color: #000000;