open-consul/ui/packages/consul-ui/app/components/list-collection/skin.scss
John Cowen 0fd17a3e2b
ui: Adds ability to show a 'partial' list in list-collections (#10174)
* ui: Add support for showing partial lists in ListCollection

* Add CSS for partial 'View more' button, and move all CSS to /components

* Enable partial view for intention permissions
2021-05-07 16:54:45 +01:00

16 lines
375 B
SCSS

%list-collection > ul {
border-top: 1px solid;
border-color: var(--gray-200);
}
%list-collection-partial-button {
cursor: pointer;
background-color: var(--gray-050);
color: var(--blue-500);
}
%list-collection-partial-button::after {
@extend %with-chevron-up-mask, %as-pseudo;
}
%list-collection-partial-button.closed::after {
@extend %with-chevron-down-mask;
}