Add filter to CellList

This commit is contained in:
2022-03-17 20:24:25 -04:00
parent 1d40fb16df
commit f120090039
3 changed files with 122 additions and 39 deletions

View File

@@ -0,0 +1,50 @@
.cell-list {
list-style-type: none;
padding: 0;
margin-top: 0;
}
.cell-list-item {
margin-bottom: 12px;
}
.cell-title {
margin-bottom: 8px;
}
.filters {
margin-bottom: 12px;
display: flex;
flex-direction: column;
}
.filters hr {
margin: 0;
width: 100%;
}
.filters hr:first-child {
margin-bottom: 8px;
}
.filters hr:last-child {
margin-top: 8px;
}
.filter-row {
display: flex;
flex-direction: row;
align-items: center;
margin-top: 4px;
margin-bottom: 4px;
}
.filter-row label,
.filter-row input,
.filter-row select {
flex: 1;
}
.filter {
width: 175px;
}

View File

@@ -1,13 +0,0 @@
.cell-list {
list-style-type: none;
padding: 0;
margin-top: 0;
}
.cell-list-item {
margin-bottom: 12px;
}
.cell-title {
margin-bottom: 8px;
}