Add action list to cards with callback (#1392)

- Add the ActionDescriptor functionality. This is a table of information with actionable links
- Also add optional status indicator which shows a color. In the future, would like to extend to have icon in this space as an alternative.
- Fixed 1 issue with account management UI throwing an error on cancel
This commit is contained in:
Kevin Cunnane
2018-05-11 10:59:42 -07:00
committed by GitHub
parent c0a6f3e012
commit 41ffd6e8ae
9 changed files with 178 additions and 29 deletions

View File

@@ -2,12 +2,9 @@
.model-card {
position: relative;
display: inline-block;
height: auto;
height: 90%;
width: auto;
margin: 15px;
padding: 10px 45px 20px 45px;
min-height: 30px;
min-width: 30px;
border-width: 1px;
border-style: solid;
border-color: rgb(214, 214, 214);
@@ -16,6 +13,16 @@
box-shadow: rgba(120, 120, 120, 0.75) 0px 0px 6px;
}
.model-card .card-content {
position: relative;
display: inline-block;
height: auto;
width: auto;
padding: 10px 45px 20px 45px;
min-height: 30px;
min-width: 30px;
}
.model-card .card-label {
font-size: 12px;
font-weight: bold;
@@ -24,4 +31,42 @@
.model-card .card-value {
font-size: 12px;
line-height: 18px;
}
}
.model-card .card-status {
position: absolute;
top: 7px;
left: 5px;
overflow: hidden;
width: 22px;
height: 22px;
}
.model-card .status-content {
position: absolute;
top: 0px;
right: 0px;
min-width: 16px;
height: 16px;
border-radius: 8px;
text-align: center;
}
.model-card .model-table {
border-spacing: 5px;
}
.model-table .table-row {
width: auto;
clear: both;
}
.model-table .table-cell {
vertical-align: top;
padding: 7px;
}
.model-table a {
cursor: pointer;
text-decoration: underline
}