summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorCassidy Dingenskirchen <admin@15318.de>2024-01-22 19:56:46 +0100
committerBirte Kristina Friesel <derf@finalrewind.org>2024-01-30 21:14:51 +0100
commit79d216976dea59e4d283ac81d65f167b3bb05329 (patch)
treef7492156cce148845fe183718b32d2359b4e5a93 /sass
parent899c7de695fbf8e21ea69bf15de42398ef31416d (diff)
new history design
(cherry picked from commit 8b3ff460b5845c4ec86466715fc054705b635c20) Signed-off-by: Birte Kristina Friesel <derf@finalrewind.org>
Diffstat (limited to 'sass')
-rw-r--r--sass/src/common/local.scss48
1 files changed, 40 insertions, 8 deletions
diff --git a/sass/src/common/local.scss b/sass/src/common/local.scss
index 0cdc6bd..3dd422d 100644
--- a/sass/src/common/local.scss
+++ b/sass/src/common/local.scss
@@ -72,17 +72,14 @@ ul.suggestions {
}
}
-
-.departures li {
+.collection.departures li, .collection.history li {
transition: background .3s;
display: grid;
- grid-template-columns: 10ch 10ch 1fr;
- align-items: center;
- &:not(#now):hover, &:focus-within {
+ &:not(#now,.history-date-change ):hover, &:focus-within {
background-color: $departures-highlight-color;
outline: 2px solid $link-color;
}
- &.cancelled {
+ &.cancelled {
background-color: $departures-cancelled-color;
font-style: italic;
.dep-line {
@@ -95,6 +92,11 @@ ul.suggestions {
font-style: normal;
}
}
+}
+
+.collection.departures li {
+ grid-template-columns: 10ch 10ch 1fr;
+ align-items: center;
&#now {
background-color: $departures-highlight-color;
padding: 2rem 20px;
@@ -104,6 +106,36 @@ ul.suggestions {
}
}
}
+.collection.history li {
+ display: grid;
+ grid-template-columns: 10ch 1fr;
+ grid-template-rows: 1fr;
+ a:first-child {
+ grid-row: 1 / span 3;
+ align-self: center;
+ text-align: center;
+ display: flex;
+ }
+ .origin, .destination {
+ grid-column: 2;
+ strong {
+ font-weight: 600;
+ }
+ }
+ .destination::before {
+ content: ' ';
+ display: block;
+ border-left: 2px dotted $off-black;
+ height: 1rem;
+ position: absolute;
+ margin-left: calc( 0.5rem - 1px );
+ margin-top: -0.5rem;
+ }
+ &.history-date-change {
+ display: block;
+ font-weight: bold;
+ }
+}
.departures .dep-time {
@@ -204,12 +236,12 @@ ul.suggestions {
@media screen and (max-width: 600px) {
- .departures li {
+ .collection.departures li {
grid-template-columns: 10ch 1fr;
.dep-line, .dep-time, .connect-platform-wrapper {
grid-column: 1;
text-align: center;
- }
+ }
.dep-dest {
grid-column: 2;
grid-row: 1 / span 2;