File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 35
35
'<div class="stats" ng-if="vm.isGuardian">' ,
36
36
' <div class="stat" title="{{vm.formatTooltip(\'STAT_INTELLECT\')}}">' ,
37
37
' <img src="images/intellect.png" /><div class="bar" ng-repeat="n in vm.store.stats.STAT_INTELLECT.tiers track by $index">' ,
38
- ' <div class="progress" style="width:{{n/60*100}}%"></div></div></div>' ,
38
+ ' <div class="progress" ng-class="{ \'complete\': (n / 60) === 1 }" style="width:{{n/60*100}}%"></div></div></div>' ,
39
39
' <div class="stat" title="{{vm.formatTooltip(\'STAT_DISCIPLINE\')}}">' ,
40
40
' <img src="images/discipline.png" /><div class="bar" ng-repeat="n in vm.store.stats.STAT_DISCIPLINE.tiers track by $index">' ,
41
- ' <div class="progress" style="width:{{n/60*100}}%"></div></div></div>' ,
41
+ ' <div class="progress" ng-class="{ \'complete\': (n / 60) === 1 }" style="width:{{n/60*100}}%"></div></div></div>' ,
42
42
' <div class="stat" title="{{vm.formatTooltip(\'STAT_STRENGTH\')}}">' ,
43
43
' <img src="images/strength.png" /><div class="bar" ng-repeat="n in vm.store.stats.STAT_STRENGTH.tiers track by $index">' ,
44
- ' <div class="progress" style="width:{{n/60*100}}%"></div></div></div>' ,
44
+ ' <div class="progress" ng-class="{ \'complete\': (n / 60) === 1 }" style="width:{{n/60*100}}%"></div></div></div>' ,
45
45
'</div>'
46
46
] . join ( '' )
47
47
} ;
Original file line number Diff line number Diff line change @@ -826,6 +826,10 @@ img.void {
826
826
.character .stats .stat .bar .progress {
827
827
height : 100% ;
828
828
background-color : white;
829
+ /*transition: all .250s ease-out;*/
830
+ }
831
+ .character .stats .stat .bar .progress .complete {
832
+ background-color : # FB9F28 ;
829
833
}
830
834
.character .stats .stat img {
831
835
height : 16px ;
@@ -1917,5 +1921,3 @@ button.toast-close-button {
1917
1921
color : # FFFFFF ;
1918
1922
text-shadow : 1px 1px # 000 ;
1919
1923
}
1920
-
1921
-
You can’t perform that action at this time.
0 commit comments