Revert "Add summary placeholder chars experiment."

This reverts commit c254534cb4.

Conflicts:
	app/styles/layout/base.scss
stable
Andrey Antukh 2014-07-12 12:52:39 +02:00
parent 32bd362499
commit a0d12e091a
2 changed files with 5 additions and 16 deletions

View File

@ -2,22 +2,17 @@ div.summary
div.summary-progress-bar div.summary-progress-bar
div.current-progress div.current-progress
div.data div.data
span.number(tg-bind-html="stats.completedPercentage") span.number(ng-bind="stats.completedPercentage")
span.placeholderx ͿͿ%
ul ul
li li
span.number(tg-bind-html="stats.total_points") span.number(ng-bind="stats.total_points|default:'--'")
span.placeholderx ͿͿͿ
span.description project<br />points span.description project<br />points
li li
span.number(tg-bind-html="stats.defined_points") span.number(ng-bind="stats.defined_points|default:'--'")
span.placeholderx ͿͿͿ
span.description defined<br />points span.description defined<br />points
li li
span.number(tg-bind-html="stats.assigned_points") span.number(ng-bind="stats.assigned_points|default:'--'")
span.placeholderx ͿͿͿ
span.description assigned<br />points span.description assigned<br />points
li li
span.number(tg-bind-html="stats.closed_points") span.number(ng-bind="stats.closed_points|default:'-- %'")
span.placeholderx ͿͿ %
span.description closed<br />points span.description closed<br />points

View File

@ -89,9 +89,3 @@ body {
.hidden { .hidden {
display: none; display: none;
} }
//TODO If no reverted do refactor. Font-size should extend from previous font sizes in dependencies/typography.scss
.placeholder {
color: #888;
font-size: 28px;
}