Moved the timeline colouring css to ietf.less, to pick up the brand colours directly.

- Legacy-Id: 10598
This commit is contained in:
Henrik Levkowetz 2015-12-15 19:41:12 +00:00
parent 213ae4921b
commit 668e88a3aa
2 changed files with 10 additions and 9 deletions

View file

@ -139,6 +139,16 @@
.position-recuse-row { background-color: hsl(hue(@brand-primary), 90%, 95%) !important ; } .position-recuse-row { background-color: hsl(hue(@brand-primary), 90%, 95%) !important ; }
.position-norecord-row { background-color: inherit; } .position-norecord-row { background-color: inherit; }
/* like label-success */
#timeline .bar:nth-child(odd) rect { fill: desaturate(@label-success-bg, 30%); }
/* like label-primary */
#timeline .bar:nth-child(even) rect { fill: @label-primary-bg; }
/* like label-warning */
#timeline .gradient.left { stop-color: @label-warning-bg; }
#timeline .gradient.right { stop-color: white; }
// XXX This change from before is not currently being applied, not sure how // XXX This change from before is not currently being applied, not sure how
// critical this is: // critical this is:

View file

@ -451,12 +451,3 @@ form.navbar-form input.form-control.input-sm { width: 141px; }
pointer-events: none; pointer-events: none;
} }
/* like label-success */
#timeline .bar:nth-child(odd) rect { fill: #5CB85C; }
/* like label-primary */
#timeline .bar:nth-child(even) rect { fill: #337AB7; }
/* like label-warning */
#timeline .gradient.left { stop-color: #F0AD4E; }
#timeline .gradient.right { stop-color: white; }