Markierung der Preiskategorie im Sparpreisfinder der Bahn
The snippet can be accessed without any authentication.
Authored by
Tii
Edited
bahn.css 798 B
td.clickable[title^="Super Sparpreis"] {
background-color: #ffd700;
}
td.clickable[title^="Sparpreis"] {
background-color: orange;
}
td.clickable[title^="Flexpreis"] {
background-color: limegreen;
}
.highlight td.clickable[title^="Super Sparpreis"] {
background-color: #caaa00 !important;
}
.highlight td.clickable[title^="Sparpreis"] {
background-color: darkorange !important;
}
.highlight td.clickable[title^="Flexpreis"] {
background-color: #009a00 !important;
}
.highlight-selected td.clickable[title^="Super Sparpreis"] {
background-color: #caaa00 !important;
}
.highlight-selected td.clickable[title^="Sparpreis"] {
background-color: darkorange !important;
}
.highlight-selected td.clickable[title^="Flexpreis"] {
background-color: #009a00 !important;
}
Please register or sign in to comment