Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
7e2d9d8c
Commit
7e2d9d8c
authored
May 11, 2018
by
Karl Hasselbring
Browse files
Ergebnisstyle für Browser ohne Grid hinzugefügt
parent
aafc654f
Changes
1
Hide whitespace changes
Inline
Side-by-side
resources/assets/less/metager/result-page.less
View file @
7e2d9d8c
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment