Left: | ||
Right: |
OLD | NEW |
---|---|
1 <div class="content"> | 1 <div class="content"> |
2 <div class="notifications"></div> | 2 <div class="notifications"></div> |
3 <svg class="statusbar" data-bind="aggregated_status"></svg> | 3 <!-- without setting the height of the svg element here it defaults |
4 to 100% of the available space causing an undesirable flash of | |
5 incorrectly calculated height --> | |
6 <svg class="statusbar" data-bind="aggregated_status" height="18"></svg> | |
j.c.sackett
2013/07/25 16:59:02
Does the comment mean we can't set this as a CSS r
jeff.pihach
2013/07/25 17:15:32
No it can be done in CSS however this element is u
gary.poster
2013/07/25 18:38:21
Maybe add this explanation to your comment?
| |
4 </div> | 7 </div> |
5 <h3>Scale units</h3> | 8 <h3>Scale units</h3> |
6 <div class="content"> | 9 <div class="content"> |
7 <input type="text" class="num-units-control" data-bind="unit_count" /> | 10 <input type="text" class="num-units-control" data-bind="unit_count" /> |
8 </div> | 11 </div> |
9 <h3>Units</h3> | 12 <h3>Units</h3> |
10 <ul class="overview-unit-list" data-bind="units"> | 13 <ul class="overview-unit-list" data-bind="units"> |
11 </ul> | 14 </ul> |
OLD | NEW |