Skip to content
Snippets Groups Projects
Commit a6eedac8 authored by Phil Höfer's avatar Phil Höfer
Browse files

Merge branch '693-parameter-out-results-with-style' into 'development'

Resolve "Parameter out=results-with-style"

Closes #693

See merge request !1246
parents 476cbb26 740e2390
No related branches found
No related tags found
2 merge requests!1262WIP: Resolve "Spendenseite Texte anpassen",!1246Resolve "Parameter out=results-with-style"
...@@ -378,7 +378,7 @@ a { ...@@ -378,7 +378,7 @@ a {
/**/ /**/
max-width: @results-width-max; max-width: @results-width-max;
.alert { .alert {
margin: @padding-small-default 0px; margin-bottom: @padding-small-default;
} }
} }
#additions-container { #additions-container {
...@@ -541,7 +541,6 @@ a { ...@@ -541,7 +541,6 @@ a {
footer.resultPageFooter { footer.resultPageFooter {
max-width: 700px; max-width: 700px;
margin-left: 50px;
margin-top: 20px; margin-top: 20px;
@media (max-width: (2 * @results-margin-left + @results-width-max - 1px)) { @media (max-width: (2 * @results-margin-left + @results-width-max - 1px)) {
margin: 20px 0 0 0; margin: 20px 0 0 0;
...@@ -582,4 +581,11 @@ footer.resultPageFooter { ...@@ -582,4 +581,11 @@ footer.resultPageFooter {
margin-left: 0px; margin-left: 0px;
} }
} }
}
/* Style for resultpage container without any header content */
#resultpage-container-noheader {
#resultpage-container;
grid-template-areas: "results";
} }
\ No newline at end of file
...@@ -182,10 +182,9 @@ header:nth-child(1) { ...@@ -182,10 +182,9 @@ header:nth-child(1) {
} }
#research-bar-placeholder { #research-bar-placeholder {
padding: @resultpage-leftbox-min-dist-top-bottom 0px 0px 50px;
width: 100%; width: 100%;
max-width: 760px; max-width: 760px;
height: 61px; height: 51px;
} }
.search-input { .search-input {
......
...@@ -28,7 +28,12 @@ ...@@ -28,7 +28,12 @@
</div> </div>
</div> </div>
<div id="results-container"> <div id="results-container">
@include('parts.errors')
@include('parts.warnings')
@yield('results') @yield('results')
@if( $metager->showQuicktips() )
<div id="quicktips"></div>
@endif
</div> </div>
<div id="additions-container"> <div id="additions-container">
<div id="search-settings"> <div id="search-settings">
......
...@@ -34,8 +34,12 @@ ...@@ -34,8 +34,12 @@
@include('modals.create-focus-modal') @include('modals.create-focus-modal')
@include('layouts.researchandtabs') @include('layouts.researchandtabs')
@else @else
<div id="resultpage-container"> <div id="resultpage-container-noheader">
@yield('results') <div id="results-container">
@include('parts.errors')
@include('parts.warnings')
@yield('results')
</div>
</div> </div>
@endif @endif
@include('parts.footer', ['type' => 'resultpage', 'id' => 'resultPageFooter']) @include('parts.footer', ['type' => 'resultpage', 'id' => 'resultPageFooter'])
......
@include('parts.errors')
@include('parts.warnings')
<div id="results"> <div id="results">
@if($mobile) @if($mobile)
@include('layouts.ad', ['ad' => $metager->popAd()]) @include('layouts.ad', ['ad' => $metager->popAd()])
...@@ -22,7 +20,4 @@ ...@@ -22,7 +20,4 @@
@include('layouts.result', ['result' => $result]) @include('layouts.result', ['result' => $result])
@endforeach @endforeach
@include('parts.pager') @include('parts.pager')
</div> </div>
@if( $metager->showQuicktips() ) \ No newline at end of file
<div id="quicktips"></div>
@endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment