[Frontend] Themes final on open prior to VISTA integration

open #95
Branch open95b now replaces open95;
Fix to status indicator to only
display when title length > 0;
This commit is contained in:
Charles Hacskaylo 2015-09-16 10:45:22 -07:00
parent a3a6706869
commit 4f5a1115d2
2 changed files with 8 additions and 7 deletions

View File

@ -54,7 +54,7 @@
.status.block {
//display: inline-block;
display: inline; // New status bar design. Inline to support ellipsis overflow
margin-right: $interiorMargin * 2;
margin-right: $interiorMarginLg;
.status-indicator {
//@include border-radius($controlCr * 0.9);
//@include box-shadow(inset rgba(black, 0.5) 0 0 3px);

View File

@ -22,7 +22,8 @@
<div class='status block'
title="{{ngModel.getDescription()}}"
ng-click='ngModel.configure()'
ng-class='ngModel.getClass()'>
ng-class='ngModel.getClass()'
ng-show="ngModel.getText().length > 0">
<span class="ui-symbol status-indicator"
ng-class='ngModel.getGlyphClass()'>
{{ngModel.getGlyph()}}
@ -31,9 +32,9 @@
ng-class='ngModel.getTextClass()'>
{{ngModel.getText()}}
</span>
<a href=''
class="ui-symbol"
ng-if="ngModel.configure">
G
</a>
<a href=''
class="ui-symbol"
ng-if="ngModel.configure">
G
</a>
</div>