More actions
m fix selector applying to the wrong element |
m fix class names & add !important (need to fix this later without !important) |
||
Line 1: | Line 1: | ||
.station-status-removed . | .station-status-removed .infobox__data { | ||
background-color: #e73d3d; | background-color: #e73d3d !important; | ||
} | } | ||
.station-status-not-in-operation . | .station-status-not-in-operation .infobox__data { | ||
background-color: #fc7208; | background-color: #fc7208 !important; | ||
} | } | ||
.station-status-closed . | .station-status-closed .infobox__data { | ||
background-color: #e73d3d; | background-color: #e73d3d !important; | ||
} | } | ||
.station-status-in-operation . | .station-status-in-operation .infobox__data { | ||
background-color: green; | background-color: green !important; | ||
} | } |
Revision as of 11:34, 4 September 2024
.station-status-removed .infobox__data {
background-color: #e73d3d !important;
}
.station-status-not-in-operation .infobox__data {
background-color: #fc7208 !important;
}
.station-status-closed .infobox__data {
background-color: #e73d3d !important;
}
.station-status-in-operation .infobox__data {
background-color: green !important;
}