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

31 lines
596 B
SCSS

%list-row {
list-style-type: none;
border: $decor-border-100;
border-top-color: $transparent;
border-bottom-color: $gray-200;
border-right-color: $transparent;
border-left-color: $transparent;
}
%list-row-intent {
border-color: $gray-200;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-top-color: $transparent;
cursor: pointer;
}
%list-row-header {
color: $black;
}
%list-row-header * {
color: inherit;
}
%list-row-detail {
color: $gray-500;
}
%list-row-detail a {
color: inherit;
}
%list-row-detail a:hover {
color: $color-action;
text-decoration: underline;
}