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 {
/**/
max-width: @results-width-max;
.alert {
margin: @padding-small-default 0px;
margin-bottom: @padding-small-default;
}
}
#additions-container {
......@@ -541,7 +541,6 @@ a {
footer.resultPageFooter {
max-width: 700px;
margin-left: 50px;
margin-top: 20px;
@media (max-width: (2 * @results-margin-left + @results-width-max - 1px)) {
margin: 20px 0 0 0;
......@@ -582,4 +581,11 @@ footer.resultPageFooter {
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) {
}
#research-bar-placeholder {
padding: @resultpage-leftbox-min-dist-top-bottom 0px 0px 50px;
width: 100%;
max-width: 760px;
height: 61px;
height: 51px;
}
.search-input {
......
......@@ -28,7 +28,12 @@
</div>
</div>
<div id="results-container">
@include('parts.errors')
@include('parts.warnings')
@yield('results')
@if( $metager->showQuicktips() )
<div id="quicktips"></div>
@endif
</div>
<div id="additions-container">
<div id="search-settings">
......
......@@ -34,8 +34,12 @@
@include('modals.create-focus-modal')
@include('layouts.researchandtabs')
@else
<div id="resultpage-container">
@yield('results')
<div id="resultpage-container-noheader">
<div id="results-container">
@include('parts.errors')
@include('parts.warnings')
@yield('results')
</div>
</div>
@endif
@include('parts.footer', ['type' => 'resultpage', 'id' => 'resultPageFooter'])
......
@include('parts.errors')
@include('parts.warnings')
<div id="results">
@if($mobile)
@include('layouts.ad', ['ad' => $metager->popAd()])
......@@ -22,7 +20,4 @@
@include('layouts.result', ['result' => $result])
@endforeach
@include('parts.pager')
</div>
@if( $metager->showQuicktips() )
<div id="quicktips"></div>
@endif
\ No newline at end of file
</div>
\ 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