Do not crop table cells when displaying query explain
This commit is contained in:
parent
306dc2e4d8
commit
642ab6465d
@ -330,9 +330,9 @@
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
#results.history td div {
|
||||
#results.no-crop td div {
|
||||
max-width: none;
|
||||
}
|
||||
}
|
||||
|
||||
#custom_query {
|
||||
height: 205px;
|
||||
|
@ -52,7 +52,7 @@ function resetTable() {
|
||||
attr("data-mode", "").
|
||||
text("").
|
||||
removeClass("empty").
|
||||
removeClass("history");
|
||||
removeClass("no-crop");
|
||||
}
|
||||
|
||||
function buildTable(results) {
|
||||
@ -104,7 +104,7 @@ function showQueryHistory() {
|
||||
setCurrentTab("table_history");
|
||||
$("#input").hide();
|
||||
$("#output").addClass("full");
|
||||
$("#results").addClass("history");
|
||||
$("#results").addClass("no-crop");
|
||||
});
|
||||
}
|
||||
|
||||
@ -250,6 +250,7 @@ function runExplain() {
|
||||
$("#query_progress").hide();
|
||||
$("#input").show();
|
||||
$("#output").removeClass("full");
|
||||
$("#results").addClass("no-crop");
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user