diff options
| author | Luc Donnet | 2014-11-26 14:47:56 +0100 |
|---|---|---|
| committer | Luc Donnet | 2014-11-26 14:47:56 +0100 |
| commit | 1deb417743694abbf94ed57deeea7c0241961d67 (patch) | |
| tree | 213be9af2ab8f61ffaf691254f2ac148ba6bc181 /app | |
| parent | cb7e0d5cd3b2d42ee3f68e4a2cd502b06aec8304 (diff) | |
| download | chouette-core-1deb417743694abbf94ed57deeea7c0241961d67.tar.bz2 | |
Fix colors for vehicle journey edit Refs #0030297
Diffstat (limited to 'app')
| -rw-r--r-- | app/assets/stylesheets/main/vehicle_journeys.css.scss | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/app/assets/stylesheets/main/vehicle_journeys.css.scss b/app/assets/stylesheets/main/vehicle_journeys.css.scss index 580874df4..dae125471 100644 --- a/app/assets/stylesheets/main/vehicle_journeys.css.scss +++ b/app/assets/stylesheets/main/vehicle_journeys.css.scss @@ -8,17 +8,34 @@ width: 100px; color: white; font-weight: bold; - } - - .journey_pattern_dependent_list { - tr.no_stop { display: none; } - } + } .time_table_list { padding-left: 25%; } .vehicle_journey_at_stops { margin-left: 25%; + thead, tbody, tfoot{ + + th, td{ + text-align: center; + } + } + + .journey_pattern_dependent_list { + tr.no_stop { display: none; } + + td.departure_time, td.arrival_time{ + &.missing{ + background-color: $brand-warning; + } + + &.invalid_position{ + background-color: $brand-danger; + } + } + } + .title{ font-weight: bold; margin-bottom: 20px; |
