Do not crop table cells when displaying query explain

This commit is contained in:
Dan Sosedoff 2014-11-03 17:55:43 -06:00
parent 306dc2e4d8
commit 642ab6465d
2 changed files with 5 additions and 4 deletions

View File

@ -330,9 +330,9 @@
padding-left: 15px;
}
#results.history td div {
#results.no-crop td div {
max-width: none;
}
}
#custom_query {
height: 205px;

View File

@ -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");
});
}