refactored waiting cursor class to utility class

This commit is contained in:
Mario Volke 2014-10-30 11:28:26 +01:00 committed by Tankred Hase
parent 900dbc8cb9
commit e34da3bdbf
5 changed files with 6 additions and 6 deletions

View File

@ -17,13 +17,13 @@
// Utilities classes
@import "utilities/responsive";
@import "utilities/others";
// Components (TODO: refactor to BEM)
@import "components/lightbox";
@import "components/dialog";
// Views (TODO: refactor to BEM)
@import "views/shared";
@import "views/add-account";
@import "views/account";
@import "views/privatekey-upload";

View File

@ -0,0 +1,3 @@
.u-waiting-cursor {
cursor: wait !important;
}

View File

@ -1,3 +0,0 @@
.waiting-cursor {
cursor: wait;
}

View File

@ -1,4 +1,4 @@
<div class="view-login view-login-initial" ng-class="{'waiting-cursor': state.ui === 3}">
<div class="view-login view-login-initial" ng-class="{'u-waiting-cursor': state.ui === 3}">
<div class="logo">
<img src="img/whiteout_logo.svg" alt="whiteout.io">
</div><!--/logo-->

View File

@ -1,4 +1,4 @@
<div class="view-login waiting-cursor">
<div class="view-login u-waiting-cursor">
<div class="logo">
<img src="img/whiteout_logo.svg" alt="whiteout.io">