[PORTAL-7] Rebase
[portal.git] / ecomp-portal-FE-common / client / app / styles / spinner.less
1 .ecomp-spinner{
2   background: url('../assets/images/spinner.gif') top left no-repeat;
3   @height: 32px;
4   @width: 32px;
5
6   width: @width;
7   height: @height;
8   position: absolute;
9   top: 35%;
10   left: ~"calc(50% - @{width}/2)";
11 }
12
13 .ecomp-save-spinner{
14   background: url('../assets/images/spinner.gif') top left no-repeat;
15   @resize: 25px;
16   width: @resize;
17   height: @resize;
18   background-size: @resize;
19   position: absolute;
20   left: -50px;
21   top: 2px;
22 }
23
24 .ecomp-small-spinner{
25   background: url('../assets/images/spinner.gif') top left no-repeat;
26   @resize: 25px;
27   width: @resize;
28   height: @resize;
29   background-size: @resize;
30   position: relative;
31   display: inline-block;
32   vertical-align: 2px;
33   cursor: pointer;
34   top: 6px;
35   color: transparent;
36   margin-left: 8px;
37 }