[Web] Same color for all last login indicators
parent
ddadc1ced2
commit
c718f085e0
|
@ -57,13 +57,8 @@ table tbody tr {
|
||||||
table tbody tr td input[type="checkbox"] {
|
table tbody tr td input[type="checkbox"] {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.label-last-in {
|
.label-last-login {
|
||||||
line-height: 2.5;
|
line-height: 2.5;
|
||||||
color: #4a4a4a!important;
|
color: #4a4a4a!important;
|
||||||
background-color: #ececec!important;
|
background-color: #ececec!important;
|
||||||
}
|
}
|
||||||
.label-last-out {
|
|
||||||
line-height: 2.5;
|
|
||||||
color: #ececec!important;
|
|
||||||
background-color: #a0a0a0!important;
|
|
||||||
}
|
|
|
@ -366,9 +366,9 @@ jQuery(function($){
|
||||||
},
|
},
|
||||||
"formatter": function(value){
|
"formatter": function(value){
|
||||||
res = value.split("/");
|
res = value.split("/");
|
||||||
return '<div class="label label-last-in">IMAP @ ' + unix_time_format(Number(res[0])) + '</div><br>' +
|
return '<div class="label label-last-login">IMAP @ ' + unix_time_format(Number(res[0])) + '</div><br>' +
|
||||||
'<div class="label label-last-in">POP3 @ ' + unix_time_format(Number(res[1])) + '</div><br>' +
|
'<div class="label label-last-login">POP3 @ ' + unix_time_format(Number(res[1])) + '</div><br>' +
|
||||||
'<div class="label label-last-out">SMTP @ ' + unix_time_format(Number(res[2])) + '</div>';
|
'<div class="label label-last-login">SMTP @ ' + unix_time_format(Number(res[2])) + '</div>';
|
||||||
}},
|
}},
|
||||||
{"name":"quarantine_notification","filterable": false,"title":lang.quarantine_notification,"breakpoints":"all"},
|
{"name":"quarantine_notification","filterable": false,"title":lang.quarantine_notification,"breakpoints":"all"},
|
||||||
{"name":"in_use","filterable": false,"type":"html","title":lang.in_use,"sortValue": function(value){
|
{"name":"in_use","filterable": false,"type":"html","title":lang.in_use,"sortValue": function(value){
|
||||||
|
|
Loading…
Reference in New Issue