convert OrganizationList to use PaginatedDataList (#192)

* convert Org list to use PaginatedDataList

* add ToolbarAddButton, ToolbarDeleteButton

* pass full org into OrganizationListItem
This commit is contained in:
Keith Grant
2019-05-07 09:51:50 -04:00
committed by GitHub
parent a011896cc0
commit e7ec1c6ef8
18 changed files with 693 additions and 525 deletions

View File

@@ -81,32 +81,34 @@
font-size: 18px;
}
.awx-ToolBarBtn{
.awx-ToolBarBtn {
width: 30px;
display: flex;
justify-content: center;
margin-right: 20px;
border-radius: 3px;
&[disabled] {
cursor: not-allowed;
}
}
.awx-ToolBarBtn:hover{
.awx-ToolBarBtn:hover {
.awx-ToolBarTrashCanIcon {
color:white;
color: white;
}
background-color:#d9534f;
}
.awx-ToolBarBtn--disabled:hover{
.awx-ToolBarBtn[disabled]:hover {
.awx-ToolBarTrashCanIcon {
color: #d2d2d2;
}
background-color:white;
cursor: not-allowed;
background-color: white;
}
.pf-l-toolbar >div{
.pf-l-toolbar > div {
&:last-child{
display:none;
}
}