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:
commit
30352e375f
@ -1,6 +1,6 @@
|
||||
.at-Layout {
|
||||
min-height: 100vh;
|
||||
width: 100vw;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
|
||||
&-topNav {
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user