ban page: remove max-height from table rows, since it doesn't work anyway
This commit is contained in:
parent
b515b74594
commit
e3ea487c2d
|
@ -46,10 +46,6 @@ $.fn.longtable = function(fields, options, data) {
|
|||
}
|
||||
el.css("width", fields[field].width);
|
||||
|
||||
if (fields[field].max_height) {
|
||||
el.css("max-height", fields[field].max_height);
|
||||
}
|
||||
|
||||
return el;
|
||||
},
|
||||
_gen_tr: function(id) {
|
||||
|
|
|
@ -36,7 +36,7 @@ var banlist_init = function(token, my_boards, inMod) {
|
|||
}
|
||||
return pre+f.mask;
|
||||
} },
|
||||
reason: {name: _("Reason"), width: "40%", max_width: "40%", max_height: "240px", handle_longwords: true, fmt: function(f) {
|
||||
reason: {name: _("Reason"), width: "40%", max_width: "40%", handle_longwords: true, fmt: function(f) {
|
||||
var add = "", suf = '';
|
||||
if (f.seen == 1) add += "<i class='fa fa-check' title='"+_("Seen")+"'></i>";
|
||||
if (f.message) {
|
||||
|
|
Loading…
Reference in New Issue