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