Skip to content
Snippets Groups Projects
Commit 7e2d9d8c authored by Karl Hasselbring's avatar Karl Hasselbring
Browse files

Ergebnisstyle für Browser ohne Grid hinzugefügt

parent aafc654f
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
......@@ -398,11 +398,13 @@ a {
}
}
@media (max-width: @resultpage-breakpoint-large) {
#research-bar-container {
width: ~"calc(60% - 1px)";
@supports (display: grid) {
#research-bar-container {
width: ~"calc(60% - 1px)";
}
grid-template-columns:~"calc(60% - 8px)"~"calc(40% - 8px)";
grid-template-areas: "searchbar ." "foki ." "results additions";
}
grid-template-columns:~"calc(60% - 8px)"~"calc(40% - 8px)";
grid-template-areas: "searchbar ." "foki ." "results additions";
}
@media (max-width: @resultpage-breakpoint-small) {
#research-bar-container {
......@@ -564,4 +566,23 @@ footer.resultPageFooter {
#research-bar>.openSidebar {
display: initial;
}
}
/* Style-fixes for browsers that do not support grid layout */
#resultpage-container {
#results-container {
float: left;
@media (max-width: @resultpage-breakpoint-small) {
float:none;
}
}
#additions-container {
float: left;
margin-left: 20px;
@supports (display: grid) {
float: none;
margin-left: 0px;
}
}
}
\ 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