1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

Merge pull request #3271 from kialam/compact-expand-lists-responsive

Fix Compact/Expand Lists responsive issues

Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
softwarefactory-project-zuul[bot] 2019-02-20 16:59:40 +00:00 committed by GitHub
commit 30352e375f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 7 deletions

View File

@ -1,6 +1,6 @@
.at-Layout {
min-height: 100vh;
width: 100vw;
width: 100%;
display: flex;
&-topNav {

View File

@ -114,12 +114,16 @@
.at-Row {
display: grid;
grid-template-columns: 10px 1fr;
overflow: hidden;
}
.at-Row--collapsed {
max-height: 50px;
.at-Row-container--wrapped {
visibility: hidden;
opacity: 0;
height: 0;
}
}
.at-Row--active {
border-left: @at-border-style-list-active-indicator;
border-top-left-radius: @at-border-radius;
@ -212,6 +216,10 @@
.at-Row-container--wrapped {
display: flex;
flex-wrap: wrap;
visibility: visible;
opacity: 1;
height: auto;
transition: visibility 0s, opacity 0.25s linear;
}
.at-RowItem--isHeaderLink {
@ -351,10 +359,7 @@
}
@media screen and (max-width: @at-breakpoint-compact-list) {
.at-Row--collapsed {
max-height: 60px;
}
.at-Row-actions {
.at-Row-actions {
align-items: center;
}