mirror of
https://github.com/ansible/awx.git
synced 2026-05-23 00:37:37 -02:30
Added logic to handle showing an empty list. Tweaked what we show when a user search returns no results. This case now shows a simple message instead of a table row with the headers. Also added column classes to a lot of the action columns in our list views.
This commit is contained in:
@@ -130,6 +130,7 @@ table, tbody {
|
||||
|
||||
.List-header {
|
||||
display: flex;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
.List-title {
|
||||
@@ -231,3 +232,15 @@ table, tbody {
|
||||
background-color: @list-srch-btn-hov-bg;
|
||||
color: @list-srch-btn-icon;
|
||||
}
|
||||
|
||||
.List-noItems {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
border-radius: 5px;
|
||||
border: 1px solid @list-no-items-bord;
|
||||
background-color: @list-no-items-bg;
|
||||
color: @list-no-items-txt;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user