mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 21:35:52 +00:00
0e4db3f242
* 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
16 lines
375 B
SCSS
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;
|
|
}
|