diff --git a/interfaces/Glitter/templates/main.tmpl b/interfaces/Glitter/templates/main.tmpl index 7b3da18..55a5389 100644 --- a/interfaces/Glitter/templates/main.tmpl +++ b/interfaces/Glitter/templates/main.tmpl @@ -238,6 +238,7 @@
+
diff --git a/interfaces/Glitter/templates/static/javascripts/glitter.js b/interfaces/Glitter/templates/static/javascripts/glitter.js index 133afa7..8c85ea5 100644 --- a/interfaces/Glitter/templates/static/javascripts/glitter.js +++ b/interfaces/Glitter/templates/static/javascripts/glitter.js @@ -1145,6 +1145,7 @@ $(function() { self.isGrabbing = ko.observable(false); self.totalMB = ko.observable(0); self.remainingMB = ko.observable(0); + self.avg_age = ko.observable(0); self.timeLeft = ko.observable(); self.progressColor = ko.observable(); self.missingText = ko.observable(); @@ -1196,6 +1197,7 @@ $(function() { self.status(data.status) self.totalMB(parseFloat(data.mb)); self.remainingMB(parseFloat(data.mbleft)); + self.avg_age(data.avg_age) self.category(data.cat); self.priority(parent.priorityName[data.priority]); self.script(data.script); diff --git a/interfaces/Glitter/templates/static/stylesheets/glitter.css b/interfaces/Glitter/templates/static/stylesheets/glitter.css index 1308480..4c1544d 100644 --- a/interfaces/Glitter/templates/static/stylesheets/glitter.css +++ b/interfaces/Glitter/templates/static/stylesheets/glitter.css @@ -366,6 +366,10 @@ td.name .row-wrap-text { display: none; } +.queue-table td.name .name-options small { + opacity: 0.5; +} + .queue-table td.name:hover .row-wrap-text { max-width: 90%; /* Change for each size! */; @@ -1318,7 +1322,7 @@ td.delete label, @media screen and (max-width: 1200px) { .queue-table td.name:hover .row-wrap-text { - max-width: 85%; + max-width: 77%; } } @@ -1332,6 +1336,10 @@ td.delete label, max-width: 80%; } + .queue-table td.name .name-options small { + display: none; + } + .history-info { float: none; }