31 lines
757 B
SCSS
31 lines
757 B
SCSS
%list-row {
|
|
list-style-type: none;
|
|
border: var(--decor-border-100);
|
|
border-top-color: transparent;
|
|
border-bottom-color: var(--token-color-surface-interactive-active);
|
|
border-right-color: transparent;
|
|
border-left-color: transparent;
|
|
}
|
|
%list-row-intent {
|
|
border-color: var(--token-color-surface-interactive-active);
|
|
box-shadow: var(--token-elevation-high-box-shadow);
|
|
border-top-color: transparent;
|
|
cursor: pointer;
|
|
}
|
|
%list-row-header {
|
|
color: var(--token-color-hashicorp-brand);
|
|
}
|
|
%list-row-header * {
|
|
color: inherit;
|
|
}
|
|
%list-row-detail {
|
|
color: var(--token-color-foreground-faint);
|
|
}
|
|
%list-row-detail a {
|
|
color: inherit;
|
|
}
|
|
%list-row-detail a:hover {
|
|
color: var(--token-color-foreground-action);
|
|
text-decoration: underline;
|
|
}
|