Fossil SCM
One of the styles imported from Inskinerator was nested SCSS-style, causing it to have no effect in CSS. This then sparked a study of that section's effect, which made me realize Inskinerator wasn't reapplying the secondary selection color in timeline graphs over a range, as at the top of a /vdiff?from&to page.
Commit
44ea50db046038beb4c43308309c55f8d0e39fa013cd1e5b5be32f45e62a24dd
Parent
29c57f2444d9a52…
1 file changed
+13
-11
+13
-11
| --- skins/default/css.txt | ||
| +++ skins/default/css.txt | ||
| @@ -368,31 +368,33 @@ | ||
| 368 | 368 | |
| 369 | 369 | |
| 370 | 370 | /* Timeline */ |
| 371 | 371 | |
| 372 | 372 | span.timelineDetail { |
| 373 | - font-size: 90%; | |
| 373 | + font-size: 90%; | |
| 374 | 374 | } |
| 375 | 375 | div.timelineDate { |
| 376 | - font-weight: bold; | |
| 377 | - white-space: nowrap; | |
| 376 | + font-weight: bold; | |
| 377 | + white-space: nowrap; | |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | 380 | tr.timelineSelected { |
| 381 | 381 | /* default/css.txt puts these styles on the whole row. We want them only |
| 382 | - on the comment/details cell within the table, not over the time | |
| 383 | - and graph columns as well. */ | |
| 382 | + * on the comment/details cell within the table, not over the time | |
| 383 | + * and graph columns as well. */ | |
| 384 | 384 | background-color: unset; |
| 385 | 385 | border: unset; |
| 386 | 386 | box-shadow: unset; |
| 387 | 387 | } |
| 388 | -tr.timelineSelected { | |
| 389 | - td.timelineModernCell, td.timelineColumnarCell { | |
| 390 | - background-color: #ffc; | |
| 391 | - border: 2px solid #eed; | |
| 392 | - border-radius: 1em; | |
| 393 | - } | |
| 388 | +tr.timelineSelected td.timelineModernCell, | |
| 389 | +tr.timelineSelected td.timelineColumnarCell { | |
| 390 | + background-color: #ffc; | |
| 391 | + border-radius: 1em; | |
| 392 | +} | |
| 393 | +tr.timelineSecondary td.timelineModernCell, | |
| 394 | +tr.timelineSecondary td.timelineColumnarCell { | |
| 395 | + background-color: #cff; | |
| 394 | 396 | } |
| 395 | 397 | |
| 396 | 398 | |
| 397 | 399 | /* Miscellaneous UI elements */ |
| 398 | 400 | |
| 399 | 401 |
| --- skins/default/css.txt | |
| +++ skins/default/css.txt | |
| @@ -368,31 +368,33 @@ | |
| 368 | |
| 369 | |
| 370 | /* Timeline */ |
| 371 | |
| 372 | span.timelineDetail { |
| 373 | font-size: 90%; |
| 374 | } |
| 375 | div.timelineDate { |
| 376 | font-weight: bold; |
| 377 | white-space: nowrap; |
| 378 | } |
| 379 | |
| 380 | tr.timelineSelected { |
| 381 | /* default/css.txt puts these styles on the whole row. We want them only |
| 382 | on the comment/details cell within the table, not over the time |
| 383 | and graph columns as well. */ |
| 384 | background-color: unset; |
| 385 | border: unset; |
| 386 | box-shadow: unset; |
| 387 | } |
| 388 | tr.timelineSelected { |
| 389 | td.timelineModernCell, td.timelineColumnarCell { |
| 390 | background-color: #ffc; |
| 391 | border: 2px solid #eed; |
| 392 | border-radius: 1em; |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | |
| 397 | /* Miscellaneous UI elements */ |
| 398 | |
| 399 |
| --- skins/default/css.txt | |
| +++ skins/default/css.txt | |
| @@ -368,31 +368,33 @@ | |
| 368 | |
| 369 | |
| 370 | /* Timeline */ |
| 371 | |
| 372 | span.timelineDetail { |
| 373 | font-size: 90%; |
| 374 | } |
| 375 | div.timelineDate { |
| 376 | font-weight: bold; |
| 377 | white-space: nowrap; |
| 378 | } |
| 379 | |
| 380 | tr.timelineSelected { |
| 381 | /* default/css.txt puts these styles on the whole row. We want them only |
| 382 | * on the comment/details cell within the table, not over the time |
| 383 | * and graph columns as well. */ |
| 384 | background-color: unset; |
| 385 | border: unset; |
| 386 | box-shadow: unset; |
| 387 | } |
| 388 | tr.timelineSelected td.timelineModernCell, |
| 389 | tr.timelineSelected td.timelineColumnarCell { |
| 390 | background-color: #ffc; |
| 391 | border-radius: 1em; |
| 392 | } |
| 393 | tr.timelineSecondary td.timelineModernCell, |
| 394 | tr.timelineSecondary td.timelineColumnarCell { |
| 395 | background-color: #cff; |
| 396 | } |
| 397 | |
| 398 | |
| 399 | /* Miscellaneous UI elements */ |
| 400 | |
| 401 |