Hi everyone, look, I´m using the plugin Query Control to view the query lists, but, I want to show more content in the window, it’s possible to change the code inside the query or change the CSS to expand the content of the query window, thanks.
You can change the entire query container with this:
/* entire search container max-height */
.internal-query .search-result-container {
max-height: 1200px; /* default is 800px */
}
and the individual matches container with:
/* individual matches container height */
.internal-query .search-result-file-match {
height: 650px; /* default looks to be ~ 450px */
}
I’d try adjusting one or both of those (the color snippet is just in there for testing) to get a size you like:
/* entire search container max-height */
.internal-query .search-result-container {
max-height: 1200px; /* default is 800px */
}
/* individual matches container height */
.internal-query .search-result-file-match {
height: 650px; /* default looks to be ~ 450px */
}
.internal-query .search-result-file-matches {
background-color: gold;
}