@5minds/node-red-dashboard-2-processcube-dynamic-list
Version:
A ui component for showing progress bars tracking a process
97 lines (82 loc) • 1.52 kB
CSS
.list-entry {
background: #FFF;
display: flex;
justify-content: space-between;
padding: 16px;
margin-bottom: 24px;
border-radius: 8px;
box-shadow: 0px 0px 8px 0px #BABABA;
transition: box-shadow .25s ease;
align-items: center;
}
.list-entry-hoverable {
cursor: pointer;
}
.list-entry-hoverable:hover {
box-shadow: 0px 0px 32px 0px #BABABA;
transition: box-shadow .5s ease;
}
.list-entry_left {
display: flex;
align-items: center;
gap: 24px;
}
.list-entry_left-progress {
font-size: 24px;
font-weight: 400;
color: #405FA5;
}
.list-entry_left-texts {
display: flex;
flex-direction: column;
gap: 4px;
justify-content: center;
}
.list-entry_left-title {
display: flex;
gap: 8px;
align-items: center;
}
.list-entry_left-title-text {
font-size: 18px;
font-weight: 400;
}
.list-entry_left-title-state {
font-size: 12px;
color: #FFF;
font-weight: 700;
padding-left: 8px;
padding-right: 8px;
padding-top: 4px;
padding-bottom: 4px;
border-radius: 8px;
border: 2px solid transparent;
}
.list-entry_left-details {
font-size: 18px;
color: #7A7A99;
font-weight: 400;
}
.list-entry_right {
display: flex;
align-self: center;
flex-direction: column;
align-items: end;
gap: 4px
}
.list-entry_right-assignee {
font-size: 18px;
font-weight: 400;
}
.list-entry_right-actions {
display: flex;
gap: 8px;
}
.list-entry_right-action {
cursor: pointer;
padding: 4px;
opacity: .6;
}
.list-entry_right-action:hover {
opacity: 1;
}