33 lines
426 B
CSS
33 lines
426 B
CSS
:host {
|
|
display: block;
|
|
}
|
|
|
|
.clickable-row {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.clickable-row:hover {
|
|
background-color: #f3f4f6;
|
|
}
|
|
|
|
.clickable-row:focus-visible {
|
|
outline: 2px solid #2563eb;
|
|
outline-offset: -2px;
|
|
}
|
|
|
|
.description-cell {
|
|
max-width: 280px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.progress-cell {
|
|
min-width: 130px;
|
|
}
|
|
|
|
.progress-label {
|
|
min-width: 2.5rem;
|
|
text-align: right;
|
|
}
|