Fossil SCM
Made the same type of improvement for "timelineCurrent" cells in modern view as we did for the primary and secondary selection colors in vdiff range graphs. That is, instead of highlighting the whole row and putting a box shadow below it, change the roundrect itself only.
Commit
a8e9f8c4d0fa28902d7c7bf0a0f0b4c1267580cec37c5ed2710397189e5ddda1
Parent
30a7c1e2c509294…
1 file changed
+6
-1
+6
-1
| --- skins/default/css.txt | ||
| +++ skins/default/css.txt | ||
| @@ -319,17 +319,22 @@ | ||
| 319 | 319 | div.timelineDate { |
| 320 | 320 | font-weight: bold; |
| 321 | 321 | white-space: nowrap; |
| 322 | 322 | } |
| 323 | 323 | |
| 324 | -tr.timelineSelected { | |
| 324 | +tr.timelineSelected, tr.timelineCurrent { | |
| 325 | 325 | /* default/css.txt puts these styles on the whole row. We want them only |
| 326 | 326 | * on the comment/details cell within the table, not over the time |
| 327 | 327 | * and graph columns as well. */ |
| 328 | 328 | background-color: unset; |
| 329 | 329 | border: unset; |
| 330 | 330 | box-shadow: unset; |
| 331 | +} | |
| 332 | +tr.timelineCurrent td.timelineModernCell, | |
| 333 | +tr.timelineCurrent td.timelineColumnarCell { | |
| 334 | + border: 1px dashed #446979; | |
| 335 | + border-radius: 1em; | |
| 331 | 336 | } |
| 332 | 337 | tr.timelineSelected td.timelineModernCell, |
| 333 | 338 | tr.timelineSelected td.timelineColumnarCell { |
| 334 | 339 | background-color: #ffc; |
| 335 | 340 | border-radius: 1em; |
| 336 | 341 |
| --- skins/default/css.txt | |
| +++ skins/default/css.txt | |
| @@ -319,17 +319,22 @@ | |
| 319 | div.timelineDate { |
| 320 | font-weight: bold; |
| 321 | white-space: nowrap; |
| 322 | } |
| 323 | |
| 324 | tr.timelineSelected { |
| 325 | /* default/css.txt puts these styles on the whole row. We want them only |
| 326 | * on the comment/details cell within the table, not over the time |
| 327 | * and graph columns as well. */ |
| 328 | background-color: unset; |
| 329 | border: unset; |
| 330 | box-shadow: unset; |
| 331 | } |
| 332 | tr.timelineSelected td.timelineModernCell, |
| 333 | tr.timelineSelected td.timelineColumnarCell { |
| 334 | background-color: #ffc; |
| 335 | border-radius: 1em; |
| 336 |
| --- skins/default/css.txt | |
| +++ skins/default/css.txt | |
| @@ -319,17 +319,22 @@ | |
| 319 | div.timelineDate { |
| 320 | font-weight: bold; |
| 321 | white-space: nowrap; |
| 322 | } |
| 323 | |
| 324 | tr.timelineSelected, tr.timelineCurrent { |
| 325 | /* default/css.txt puts these styles on the whole row. We want them only |
| 326 | * on the comment/details cell within the table, not over the time |
| 327 | * and graph columns as well. */ |
| 328 | background-color: unset; |
| 329 | border: unset; |
| 330 | box-shadow: unset; |
| 331 | } |
| 332 | tr.timelineCurrent td.timelineModernCell, |
| 333 | tr.timelineCurrent td.timelineColumnarCell { |
| 334 | border: 1px dashed #446979; |
| 335 | border-radius: 1em; |
| 336 | } |
| 337 | tr.timelineSelected td.timelineModernCell, |
| 338 | tr.timelineSelected td.timelineColumnarCell { |
| 339 | background-color: #ffc; |
| 340 | border-radius: 1em; |
| 341 |