|
@@ -1011,3 +1011,90 @@ button.btn.btn-xs{
|
|
|
-o-transition: none!important;
|
|
|
transition: none!important;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+.viewstatus{
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+.viewstatus.pending{
|
|
|
+ width: 12px;
|
|
|
+ height: 12px;
|
|
|
+ border: 2px solid black;
|
|
|
+ border-radius: 50%;
|
|
|
+ vertical-align: middle;
|
|
|
+ position: relative;
|
|
|
+ border-radius: 50%;
|
|
|
+}
|
|
|
+
|
|
|
+.viewstatus.pending:before, .viewstatus.pending:after{
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 4px;
|
|
|
+ top: 3px;
|
|
|
+ width: 5px;
|
|
|
+ height: 2px;
|
|
|
+ background: black;
|
|
|
+}
|
|
|
+.viewstatus.pending:after{
|
|
|
+ top: -3px;
|
|
|
+ left: 3px;
|
|
|
+ width: 2px;
|
|
|
+ height: 2px;
|
|
|
+ border-radius: 100%;
|
|
|
+}
|
|
|
+.viewstatus.pending:before{
|
|
|
+ -webkit-transform-origin: 0% 50%;
|
|
|
+ -moz-transform-origin: 0% 50%;
|
|
|
+ -ms-transform-origin: 0% 50%;
|
|
|
+ -o-transform-origin: 0% 50%;
|
|
|
+ transform-origin: 0% 50%;
|
|
|
+
|
|
|
+ animation: rotate 2.0s infinite linear;
|
|
|
+ -webkit-animation: rotate 2.0s infinite linear;
|
|
|
+}
|
|
|
+
|
|
|
+@-webkit-keyframes rotate { 100% { -webkit-transform: rotate(360deg) }}
|
|
|
+@keyframes rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}
|
|
|
+
|
|
|
+
|
|
|
+.viewstatus.deploying{
|
|
|
+ width: 17px;
|
|
|
+ height: 12px;
|
|
|
+ text-align: center;
|
|
|
+ vertical-align: middle;
|
|
|
+}
|
|
|
+.viewstatus.deploying > div{
|
|
|
+ background: black;
|
|
|
+ height: 100%;
|
|
|
+ width: 3px;
|
|
|
+ display: inline-block;
|
|
|
+ -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
|
|
|
+ animation: stretchdelay 1.2s infinite ease-in-out;
|
|
|
+}
|
|
|
+.viewstatus.deploying .rect2 {
|
|
|
+ -webkit-animation-delay: -1.1s;
|
|
|
+ animation-delay: -1.1s;
|
|
|
+}
|
|
|
+.viewstatus.deploying .rect3 {
|
|
|
+ -webkit-animation-delay: -1.0s;
|
|
|
+ animation-delay: -1.0s;
|
|
|
+}
|
|
|
+
|
|
|
+@-webkit-keyframes stretchdelay {
|
|
|
+ 0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
|
|
|
+ 20% { -webkit-transform: scaleY(1.0) }
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes stretchdelay {
|
|
|
+ 0%, 40%, 100% {
|
|
|
+ transform: scaleY(0.4);
|
|
|
+ -webkit-transform: scaleY(0.4);
|
|
|
+ } 20% {
|
|
|
+ transform: scaleY(1.0);
|
|
|
+ -webkit-transform: scaleY(1.0);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+accordion .panel-group .panel{
|
|
|
+ overflow: visible;
|
|
|
+}
|