2020-09-18 10:14:06 +00:00
|
|
|
%list-row {
|
|
|
|
list-style-type: none;
|
2021-10-07 18:21:11 +00:00
|
|
|
border: var(--decor-border-100);
|
|
|
|
border-top-color: var(--transparent);
|
|
|
|
border-bottom-color: rgb(var(--tone-gray-200));
|
|
|
|
border-right-color: var(--transparent);
|
|
|
|
border-left-color: var(--transparent);
|
2020-09-18 10:14:06 +00:00
|
|
|
}
|
|
|
|
%list-row-intent {
|
2021-10-07 18:21:11 +00:00
|
|
|
border-color: rgb(var(--tone-gray-200));
|
2021-12-01 11:33:33 +00:00
|
|
|
/*TODO: This should use a shared/CSS prop shadow*/
|
|
|
|
box-shadow: 0 2px 4px rgb(var(--black) / 10%);
|
2021-10-07 18:21:11 +00:00
|
|
|
border-top-color: var(--transparent);
|
2020-09-18 10:14:06 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
%list-row-header {
|
2021-11-23 18:32:11 +00:00
|
|
|
color: rgb(var(--tone-gray-999));
|
2020-09-18 10:14:06 +00:00
|
|
|
}
|
|
|
|
%list-row-header * {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
%list-row-detail {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: rgb(var(--tone-gray-500));
|
2020-09-18 10:14:06 +00:00
|
|
|
}
|
2020-09-22 17:20:44 +00:00
|
|
|
%list-row-detail a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
%list-row-detail a:hover {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: rgb(var(--color-action));
|
2020-09-22 17:20:44 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|