diff --git a/static/css/style.scss b/static/css/style.scss
index 4c117aa..3bc4973 100644
--- a/static/css/style.scss
+++ b/static/css/style.scss
@@ -172,29 +172,28 @@ body {
}
.table-condensed {
& > thead, & > tbody, & > tfoot{
- & > tr > th, & > tr > td{
+ & > tr > th, & > tr > td[class*="rolling-"]{
overflow-y: hidden;
clip-path: padding-box;
- &[class*="rolling-"]{
- & > div {
- position: absolute;
- left: 0;
- top: 0;
+ & > div {
+ position: absolute;
+ left: 0;
+ top: 0;
+ height: 100%;
+ width: 100%;
+ transition-property: transform;
+ transition-duration: 1s;
+ transition-timing-function: ease;
+ div {
+ padding: 5px;
+ white-space: nowrap;
height: 100%;
- transition-property: transform;
- transition-duration: 1s;
- transition-timing-function: ease;
- div {
- padding: 5px;
- white-space: nowrap;
- height: 100%;
- }
- &.notrans{
- transition-duration: 0s;
- }
}
- position: relative;
+ &.notrans{
+ transition-duration: 0s;
+ }
}
+ position: relative;
}
}
}
@@ -265,12 +264,18 @@ body {
.text-right-xs {
text-align: right;
}
+.text-left-xs {
+ text-align: left;
+}
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
.text-right-sm {
text-align: right;
}
+ .text-left-sm {
+ text-align: left;
+ }
}
/* Medium devices (desktops, 992px and up) */
@@ -278,6 +283,9 @@ body {
.text-right-md {
text-align: right;
}
+ .text-left-md {
+ text-align: left;
+ }
.table.flat-md {
td,tr,th {
float: none;
@@ -296,6 +304,9 @@ body {
.text-right-lg {
text-align: right;
}
+ .text-left-lg {
+ text-align: left;
+ }
}
.table.flat-md {
word-break: break-all;
diff --git a/static/js/index.es6 b/static/js/index.es6
index 7fb3c41..1abbd5c 100644
--- a/static/js/index.es6
+++ b/static/js/index.es6
@@ -93,7 +93,7 @@ var stringifyTime = function(ts){
ago = timeago.format(date);
} else {
str = "0000-00-00 00:00";
- ago = "-";
+ ago = "Never";
}
return [str, ago];
}
diff --git a/static/js/status.es6 b/static/js/status.es6
index ed94da8..d39fb17 100644
--- a/static/js/status.es6
+++ b/static/js/status.es6
@@ -21,37 +21,33 @@ $(document).ready(() => {
var resetToZeroHandler = function(e){
var $this = $(this);
$this.addClass('notrans').css("transform", "translateY(0)");
+ $this.off('transitioncancel.reset');
setTimeout(function(){
$this.removeClass('notrans');
}, 0);
}
+ var clearResetHandler = function(e){
+ var $this = $(this);
+ $this.off('transitionend.reset')
+ }
setInterval(function(){
+ if($('#mirror-list .hidden-md:not(.hidden-xs):not(.hidden-sm)').css('display') != 'none'){
+ return;
+ }
step += 1;
- var $objs = $('');
-
- var $objs3 = $("tr:not(:hover):not(:active):not(.last-succ) > .rolling-3 > div");
- $objs3.css("transform", `translateY(-${Math.floor(step / 2) * 100}%)`);
- $objs = $objs.add($objs3);
-
- var $objs3_1 = $("tr.last-succ:not(:hover):not(:active) > .rolling-3 > div");
- var pos = Math.floor(step / 2);
- if(pos >= 1) pos--;
- $objs3_1.css("transform", `translateY(-${pos * 100}%)`);
- $objs = $objs.add($objs3_1);
-
- var $objs6 = $("tr:not(:hover):not(:active):not(.status-syncing) > .rolling-6 > div");
- $objs6.css("transform", `translateY(-${step * 100}%)`);
- $objs = $objs.add($objs6);
-
- var $objs6_1 = $("tr.status-syncing:not(:hover):not(:active) > .rolling-6 > div");
- pos = step;
- if(pos >= 5) pos--;
- $objs6_1.css("transform", `translateY(-${pos * 100}%)`);
- $objs = $objs.add($objs6_1);
-
+ var $objs = $('tr:not(:hover):not(:active) > td[class*="rolling-"] > div');
+ $objs.each(function(){
+ var $this = $(this);
+ var index = $this.children('div[data-tuna-roll-seq="'+step+'"]').index();
+ if(index == -1){
+ return;
+ }
+ $this.css("transform", `translateY(-${index * 100}%)`);
+ });
step %= 6;
if(step == 0){
- $objs.one('transitionend', resetToZeroHandler);
+ $objs.one('transitionend.reset', resetToZeroHandler);
+ $objs.one('transitioncancel.reset', clearResetHandler);
}
}, 2500);
});
diff --git a/status.html b/status.html
index a068d2a..f96075e 100644
--- a/status.html
+++ b/status.html
@@ -37,10 +37,10 @@ permalink: /status/
Name
- Last Update
- Upstream
+ Last Update
+ Upstream
Status
- Size
+ Size