mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
updated spinner view to use CSS3 instead of spinning font.
This commit is contained in:
parent
2b2bd23065
commit
00bb73a423
@ -9,6 +9,7 @@
|
||||
@import "../shared/styles/clickable";
|
||||
@import "prefixer";
|
||||
@import "icons";
|
||||
@import "spinner";
|
||||
|
||||
.progress {
|
||||
width : 125px;
|
||||
@ -61,11 +62,6 @@
|
||||
padding : 30px;
|
||||
}
|
||||
|
||||
.nz-spinner {
|
||||
.text-center;
|
||||
font-size : 56px;
|
||||
padding : 30px;
|
||||
}
|
||||
|
||||
.page-toolbar {
|
||||
margin-top : 10px;
|
||||
@ -94,6 +90,6 @@
|
||||
}
|
||||
|
||||
.label-large {
|
||||
padding: 4px 6px;
|
||||
font-size: 16px;
|
||||
padding : 4px 6px;
|
||||
font-size : 16px;
|
||||
}
|
132
UI/Content/spinner.less
Normal file
132
UI/Content/spinner.less
Normal file
@ -0,0 +1,132 @@
|
||||
@import "prefixer";
|
||||
@import "bootstrap/variables";
|
||||
|
||||
@colorDark : @grayDark;
|
||||
@colorLight : @grayLighter;
|
||||
|
||||
#followingBalls {
|
||||
position : relative;
|
||||
height : 20px;
|
||||
width : 256px;
|
||||
margin : 50px auto;
|
||||
display : block;
|
||||
}
|
||||
|
||||
.followingBalls {
|
||||
background-color : @colorDark;
|
||||
position : absolute;
|
||||
top : 0;
|
||||
left : 0;
|
||||
width : 20px;
|
||||
height : 20px;
|
||||
.border-radius(10px);
|
||||
.animation-name(bounce_followingBallsG);
|
||||
.animation-duration(1.9s);
|
||||
.animation-iteration-count(infinite);
|
||||
.animation-direction(linear);
|
||||
}
|
||||
|
||||
#followingBallsG_1 {
|
||||
.animation-delay(0s);
|
||||
}
|
||||
|
||||
#followingBallsG_2 {
|
||||
.animation-delay(0.19s);
|
||||
}
|
||||
|
||||
#followingBallsG_3 {
|
||||
.animation-delay(0.38s);
|
||||
}
|
||||
|
||||
#followingBallsG_4 {
|
||||
.animation-delay(0.57s);
|
||||
}
|
||||
|
||||
@-moz-keyframes bounce_followingBallsG {
|
||||
0% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
|
||||
50% {
|
||||
left : 236px;
|
||||
background-color : @colorLight;
|
||||
}
|
||||
|
||||
100% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@-webkit-keyframes bounce_followingBallsG {
|
||||
0% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
|
||||
50% {
|
||||
left : 236px;
|
||||
background-color : @colorLight;
|
||||
}
|
||||
|
||||
100% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@-ms-keyframes bounce_followingBallsG {
|
||||
0% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
|
||||
50% {
|
||||
left : 236px;
|
||||
background-color : @colorLight;
|
||||
}
|
||||
|
||||
100% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@-o-keyframes bounce_followingBallsG {
|
||||
0% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
|
||||
50% {
|
||||
left : 236px;
|
||||
background-color : @colorLight;
|
||||
}
|
||||
|
||||
100% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@keyframes bounce_followingBallsG {
|
||||
0% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
|
||||
50% {
|
||||
left : 236px;
|
||||
background-color : @colorLight;
|
||||
}
|
||||
|
||||
100% {
|
||||
left : 0px;
|
||||
background-color : @colorDark;
|
||||
}
|
||||
}
|
@ -1 +1,8 @@
|
||||
<i class="icon-spinner icon-spin"/>
|
||||
<div class="row">
|
||||
<div id="followingBalls">
|
||||
<div id="followingBallsG_1" class="followingBalls"></div>
|
||||
<div id="followingBallsG_2" class="followingBalls"></div>
|
||||
<div id="followingBallsG_3" class="followingBalls"></div>
|
||||
<div id="followingBallsG_4" class="followingBalls"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1,4 +1,4 @@
|
||||
'use strict';
|
||||
'use strict';
|
||||
|
||||
define(
|
||||
[
|
||||
@ -6,7 +6,6 @@ define(
|
||||
], function (Marionette) {
|
||||
return Marionette.ItemView.extend({
|
||||
template : 'Shared/SpinnerTemplate',
|
||||
className: 'nz-spinner row'
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user