parent
27c7ed1e6d
commit
8f9b9c901c
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,18 @@
|
|||||||
|
'use strict';
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'Cells/NzbDroneCell'
|
||||||
|
], function (NzbDroneCell) {
|
||||||
|
return NzbDroneCell.extend({
|
||||||
|
|
||||||
|
className: 'log-level-cell',
|
||||||
|
|
||||||
|
render: function () {
|
||||||
|
|
||||||
|
var level = this._getValue();
|
||||||
|
this.$el.html('<i class="icon-{0}" title="{1}"/>'.format(this._getValue().toLowerCase(), level));
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,20 @@
|
|||||||
|
'use strict';
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'Cells/NzbDroneCell',
|
||||||
|
'moment'
|
||||||
|
], function (NzbDroneCell, Moment) {
|
||||||
|
return NzbDroneCell.extend({
|
||||||
|
|
||||||
|
className: 'log-time-cell',
|
||||||
|
|
||||||
|
render: function () {
|
||||||
|
|
||||||
|
var date = Moment(this._getValue());
|
||||||
|
this.$el.html(date.format('LT'));
|
||||||
|
this.$el.attr('title', date.format('LLLL'));
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
@ -0,0 +1,50 @@
|
|||||||
|
@import "../Content/icons";
|
||||||
|
|
||||||
|
#logs-screen {
|
||||||
|
|
||||||
|
.log-time-cell{
|
||||||
|
width: 80px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.log-level-cell{
|
||||||
|
width: 12px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
td{
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.icon-info:before {
|
||||||
|
.icon(@info-sign);
|
||||||
|
color : dodgerblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-debug:before {
|
||||||
|
.icon(@info-sign);
|
||||||
|
color : gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-trace:before {
|
||||||
|
.icon(@info-sign);
|
||||||
|
color : lightgrey;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-warn:before {
|
||||||
|
.icon(@exclamation-sign);
|
||||||
|
color : orange;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-error:before {
|
||||||
|
.icon(@bug);
|
||||||
|
color : red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-fatal:before {
|
||||||
|
.icon(@remove-sign);
|
||||||
|
color : purple;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in new issue