open-consul/ui/packages/consul-ui/app/components/list-row/skin.scss

31 lines
691 B
SCSS

%list-row {
list-style-type: none;
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);
}
%list-row-intent {
border-color: rgb(var(--tone-gray-200));
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-top-color: var(--transparent);
cursor: pointer;
}
%list-row-header {
color: var(--black);
}
%list-row-header * {
color: inherit;
}
%list-row-detail {
color: rgb(var(--tone-gray-500));
}
%list-row-detail a {
color: inherit;
}
%list-row-detail a:hover {
color: rgb(var(--color-action));
text-decoration: underline;
}