Denote invalid job templates and scheduled jobs by displaying a red invalid bar

This commit is contained in:
Marliana Lara
2018-03-05 13:21:37 -05:00
parent 44f6423af3
commit 18f3c79bc3
8 changed files with 98 additions and 6 deletions

View File

@@ -72,10 +72,6 @@ table, tbody {
border-left: 5px solid @list-row-select-bord;
}
.List-tableRow--selected > :first-child {
padding-left: 10px;
}
.List-tableRow--disabled {
.List-tableCell, .List-tableCell * {
color: @b7grey;
@@ -98,6 +94,25 @@ table, tbody {
}
}
.List-tableRow--invalid {
height: 40px;
}
.List-tableRow--invalidBar {
align-items: center;
border-left: solid @at-space-2x @at-color-error;
color: @at-white;
display: flex;
height: 100%;
justify-content: center;
position: relative;
i {
position: absolute;
left: -7px;
}
}
.List-tableCell {
padding: 7px 15px;
border-top:0px!important;
@@ -387,6 +402,11 @@ table, tbody {
max-width: 164px;
}
.List-staticColumn--invalidBar {
width: 10px;
padding-right: 0px!important;
}
.List-staticColumnAdjacent {
padding-left: 10px!important;
}