Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUGFIX: Broken layout in media browser when using more than 25 tags #2312

Merged
merged 1 commit into from Dec 9, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 11 additions & 11 deletions Neos.Media.Browser/Resources/Public/Styles/MediaBrowser.css
Expand Up @@ -125,6 +125,10 @@
margin: 0;
}
}
.neos.media-browser .neos-media-content {
display: flex;
flex-direction: row;
}
.neos.media-browser .neos-media-content:not(.neos-media-aside-condensed) {
*zoom: 1;
}
Expand Down Expand Up @@ -182,6 +186,9 @@
.neos.media-browser .neos-media-content .neos-search button[type="submit"] i {
vertical-align: baseline;
}
.neos.media-browser .neos-media-content.neos-media-aside-condensed {
flex-direction: column;
}
.neos.media-browser .neos-media-content.neos-media-aside-condensed .neos-media-aside {
margin-top: 32px;
*zoom: 1;
Expand Down Expand Up @@ -297,6 +304,9 @@
max-width: 320px;
}
@media (max-width: 767px) {
.neos.media-browser .neos-media-content {
flex-direction: column;
}
.neos.media-browser .neos-media-content .neos-media-aside {
margin-top: 32px;
*zoom: 1;
Expand Down Expand Up @@ -479,8 +489,7 @@
display: inline-block;
font-style: normal;
font-variant: normal;
font-family: FontAwesome;
font-weight: 900;
font-weight: normal;
line-height: 1;
vertical-align: -.125em;
content: \f063;
Expand Down Expand Up @@ -758,15 +767,6 @@
cursor: pointer;
outline: 4px solid #00b5ff;
}
.neos.media-browser .neos-media-content {
display: flex;
flex-direction: row;
}
@media screen and (max-width: 767px) {
.neos.media-browser .neos-media-content {
flex-direction: column;
}
}
.neos.media-browser .neos-image-inputs,
.neos.media-browser .neos-image-example {
flex: 1;
Expand Down