mirror of
https://github.com/ansible/awx.git
synced 2026-02-18 11:40:05 -03:30
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:
@@ -1,6 +1,6 @@
|
|||||||
.at-Layout {
|
.at-Layout {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
width: 100vw;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
&-topNav {
|
&-topNav {
|
||||||
|
|||||||
@@ -114,12 +114,16 @@
|
|||||||
.at-Row {
|
.at-Row {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 10px 1fr;
|
grid-template-columns: 10px 1fr;
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.at-Row--collapsed {
|
.at-Row--collapsed {
|
||||||
max-height: 50px;
|
.at-Row-container--wrapped {
|
||||||
|
visibility: hidden;
|
||||||
|
opacity: 0;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.at-Row--active {
|
.at-Row--active {
|
||||||
border-left: @at-border-style-list-active-indicator;
|
border-left: @at-border-style-list-active-indicator;
|
||||||
border-top-left-radius: @at-border-radius;
|
border-top-left-radius: @at-border-radius;
|
||||||
@@ -212,6 +216,10 @@
|
|||||||
.at-Row-container--wrapped {
|
.at-Row-container--wrapped {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
height: auto;
|
||||||
|
transition: visibility 0s, opacity 0.25s linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
.at-RowItem--isHeaderLink {
|
.at-RowItem--isHeaderLink {
|
||||||
@@ -351,9 +359,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: @at-breakpoint-compact-list) {
|
@media screen and (max-width: @at-breakpoint-compact-list) {
|
||||||
.at-Row--collapsed {
|
|
||||||
max-height: 60px;
|
|
||||||
}
|
|
||||||
.at-Row-actions {
|
.at-Row-actions {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user