Add summary placeholder chars experiment.
parent
090256a9ea
commit
c254534cb4
|
@ -2,17 +2,22 @@ div.summary
|
||||||
div.summary-progress-bar
|
div.summary-progress-bar
|
||||||
div.current-progress
|
div.current-progress
|
||||||
div.data
|
div.data
|
||||||
span.number(ng-bind="stats.completedPercentage")
|
span.number(tg-bind-html="stats.completedPercentage")
|
||||||
|
span.placeholderx ͿͿ%
|
||||||
ul
|
ul
|
||||||
li
|
li
|
||||||
span.number(ng-bind="stats.total_points|default:'--'")
|
span.number(tg-bind-html="stats.total_points")
|
||||||
|
span.placeholderx ͿͿͿ
|
||||||
span.description project<br />points
|
span.description project<br />points
|
||||||
li
|
li
|
||||||
span.number(ng-bind="stats.defined_points|default:'--'")
|
span.number(tg-bind-html="stats.defined_points")
|
||||||
|
span.placeholderx ͿͿͿ
|
||||||
span.description defined<br />points
|
span.description defined<br />points
|
||||||
li
|
li
|
||||||
span.number(ng-bind="stats.assigned_points|default:'--'")
|
span.number(tg-bind-html="stats.assigned_points")
|
||||||
|
span.placeholderx ͿͿͿ
|
||||||
span.description assigned<br />points
|
span.description assigned<br />points
|
||||||
li
|
li
|
||||||
span.number(ng-bind="stats.closed_points|default:'-- %'")
|
span.number(tg-bind-html="stats.closed_points")
|
||||||
|
span.placeholderx ͿͿ %
|
||||||
span.description closed<br />points
|
span.description closed<br />points
|
||||||
|
|
|
@ -89,3 +89,8 @@ body {
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.placeholder {
|
||||||
|
color: #888;
|
||||||
|
font-size: 28px;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue