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:
Michael Abashian
2016-01-18 12:59:24 -05:00
parent 370b8b4762
commit 7b2284def4
11 changed files with 61 additions and 12 deletions

View File

@@ -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;
}