|
|
@ -381,10 +381,6 @@ input:checked + .slider:before { |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
|
|
|
|
#section-dashboard .navbar-brand { |
|
|
|
padding: 10px 20px; |
|
|
|
} |
|
|
|
|
|
|
|
.breadcrumb > li + li:before { |
|
|
|
display: none; |
|
|
|
} |
|
|
@ -457,12 +453,6 @@ input:checked + .slider:before { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.notifications-badge.stick-to-top { |
|
|
|
top: 38px; |
|
|
|
left: 30px; |
|
|
|
z-index: 1500; |
|
|
|
} |
|
|
|
|
|
|
|
.notifications-badge { |
|
|
|
position: fixed; |
|
|
|
bottom: 10px; |
|
|
@ -475,7 +465,6 @@ input:checked + .slider:before { |
|
|
|
margin-left: 2px; |
|
|
|
font-weight: bold; |
|
|
|
} |
|
|
|
|
|
|
|
.badge.success { |
|
|
|
color: #3c763d; |
|
|
|
background-color: #dff0d8; |
|
|
@ -491,6 +480,43 @@ input:checked + .slider:before { |
|
|
|
background-color: #f2dede; |
|
|
|
border-color: #ebccd1; |
|
|
|
} |
|
|
|
|
|
|
|
.spinner-hide { |
|
|
|
>div { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.spinner { |
|
|
|
position: absolute; |
|
|
|
left: 60px; |
|
|
|
bottom: -12px; |
|
|
|
|
|
|
|
>div { |
|
|
|
background-color: #fff; |
|
|
|
margin-right: 1px; |
|
|
|
width: 3px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
&.stick-to-top { |
|
|
|
top: -3px; |
|
|
|
left: 470px; |
|
|
|
z-index: 1500; |
|
|
|
|
|
|
|
.spinner { |
|
|
|
display: inline-block; |
|
|
|
position: relative; |
|
|
|
left: -4px; |
|
|
|
bottom: -16px; |
|
|
|
|
|
|
|
>div { |
|
|
|
background-color: #00bcd4; |
|
|
|
margin-right: 1px; |
|
|
|
width: 3px; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#js-copytextarea { |
|
|
@ -501,4 +527,56 @@ input:checked + .slider:before { |
|
|
|
|
|
|
|
#app { |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|
|
|
|
|
.spinner { |
|
|
|
width: 50px; |
|
|
|
height: 40px; |
|
|
|
text-align: center; |
|
|
|
font-size: 10px; |
|
|
|
} |
|
|
|
|
|
|
|
.spinner > div { |
|
|
|
background-color: #333; |
|
|
|
height: 100%; |
|
|
|
width: 6px; |
|
|
|
display: inline-block; |
|
|
|
|
|
|
|
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; |
|
|
|
animation: sk-stretchdelay 1.2s infinite ease-in-out; |
|
|
|
} |
|
|
|
|
|
|
|
.spinner .rect2 { |
|
|
|
-webkit-animation-delay: -1.1s; |
|
|
|
animation-delay: -1.1s; |
|
|
|
} |
|
|
|
|
|
|
|
.spinner .rect3 { |
|
|
|
-webkit-animation-delay: -1.0s; |
|
|
|
animation-delay: -1.0s; |
|
|
|
} |
|
|
|
|
|
|
|
.spinner .rect4 { |
|
|
|
-webkit-animation-delay: -0.9s; |
|
|
|
animation-delay: -0.9s; |
|
|
|
} |
|
|
|
|
|
|
|
.spinner .rect5 { |
|
|
|
-webkit-animation-delay: -0.8s; |
|
|
|
animation-delay: -0.8s; |
|
|
|
} |
|
|
|
|
|
|
|
@-webkit-keyframes sk-stretchdelay { |
|
|
|
0%, 40%, 100% { -webkit-transform: scaleY(0.4) } |
|
|
|
20% { -webkit-transform: scaleY(1.0) } |
|
|
|
} |
|
|
|
|
|
|
|
@keyframes sk-stretchdelay { |
|
|
|
0%, 40%, 100% { |
|
|
|
transform: scaleY(0.4); |
|
|
|
-webkit-transform: scaleY(0.4); |
|
|
|
} 20% { |
|
|
|
transform: scaleY(1.0); |
|
|
|
-webkit-transform: scaleY(1.0); |
|
|
|
} |
|
|
|
} |