mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
13400-Fix dashboard height full screen dark theme
This commit is contained in:
parent
6b21f1cd53
commit
b3f0a8ed5c
@ -426,12 +426,12 @@ class OrderInterpreter extends Wizard
|
||||
echo $this->loadJS();
|
||||
echo '</ul>';
|
||||
if ($iterator > 10) {
|
||||
echo '<div class="more_results"><span class="invert_filter">
|
||||
echo '<div class="more_results"><span class="">
|
||||
+ '.$more_results.' '.__('results found').'</span></div>';
|
||||
}
|
||||
|
||||
if ($iterator === 0) {
|
||||
echo '<span class="invert_filter">'.__('Press enter to search').'</span>';
|
||||
echo '<span class="">'.__('Press enter to search').'</span>';
|
||||
}
|
||||
|
||||
echo '</div>';
|
||||
|
@ -2738,6 +2738,11 @@ function menuTabsShowHide() {
|
||||
}
|
||||
|
||||
function resizeSearchHeader() {
|
||||
$(".show_result_interpreter").width($("#keywords").outerWidth() - 12);
|
||||
$(".show_result_interpreter").css("left", $("#keywords").position().left + 2);
|
||||
if ($(".show_result_interpreter").width() && $("#keywords").position()) {
|
||||
$(".show_result_interpreter").width($("#keywords").outerWidth() - 12);
|
||||
$(".show_result_interpreter").css(
|
||||
"left",
|
||||
$("#keywords").position().left + 2
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -758,7 +758,6 @@ div#main_pure {
|
||||
margin-top: 30px;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
height: 1000px;
|
||||
width: 98%;
|
||||
position: static;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user