mirror of
https://github.com/moparisthebest/mail
synced 2024-11-22 17:02:17 -05:00
refactored waiting cursor class to utility class
This commit is contained in:
parent
900dbc8cb9
commit
e34da3bdbf
@ -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";
|
||||
|
3
src/sass/utilities/_others.scss
Normal file
3
src/sass/utilities/_others.scss
Normal file
@ -0,0 +1,3 @@
|
||||
.u-waiting-cursor {
|
||||
cursor: wait !important;
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
.waiting-cursor {
|
||||
cursor: wait;
|
||||
}
|
@ -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-->
|
||||
|
@ -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">
|
||||
|
Loading…
Reference in New Issue
Block a user