diff options
| author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-12-29 16:31:43 +0100 |
|---|---|---|
| committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-12-29 16:31:43 +0100 |
| commit | aba7207168885c1f2cf32d461338b4cc8d071d34 (patch) | |
| tree | bdadf26b4b3809d13bbf09b6c53617bbd72d9f1e /sass | |
| parent | 3cdd41ad83b8c0611fc8a5e33af9b90a325c646d (diff) | |
sort full history in chronological order (ascending by time)
This feels more intuitive. The snippet on the landing page remains in
reverse chronological order (descending by time).
Diffstat (limited to 'sass')
| -rw-r--r-- | sass/src/common/local.scss | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/sass/src/common/local.scss b/sass/src/common/local.scss index 9c03675..c0552eb 100644 --- a/sass/src/common/local.scss +++ b/sass/src/common/local.scss @@ -163,15 +163,30 @@ ul.route-history > li { } // route icon bubble - i.material-icons { - &[aria-label=nach] { - padding-top: 0.4rem; + &.order-asc { + i.material-icons { + &[aria-label=von] { + display: block; + transform: rotate(90deg); + height: 1rem; + margin-top: 0.4rem; + } + &[aria-label=nach] { + padding-top: 0.4rem; + } } - &[aria-label=von] { - display: block; - transform: rotate(-90deg); - height: 1rem; - margin-top: 0.4rem; + } + &.order-desc { + i.material-icons { + &[aria-label=nach] { + padding-top: 0.4rem; + } + &[aria-label=von] { + display: block; + transform: rotate(-90deg); + height: 1rem; + margin-top: 0.4rem; + } } } |
