github.com/argoproj/argo-cd@v1.8.7/ui/src/app/shared/components/expandable/expandable.scss (about) 1 @import 'node_modules/argo-ui/src/styles/config'; 2 3 .expandable { 4 position: relative; 5 overflow: hidden; 6 transition: max-height 0.5s ease-out; 7 8 &--collapsed::after { 9 content: ''; 10 display: block; 11 position: absolute; 12 left: 0; 13 right: 0; 14 bottom: 0; 15 height: 20px; 16 background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); 17 } 18 19 &__handle { 20 position: absolute; 21 top: 1em; 22 right: 1em; 23 z-index: 1; 24 cursor: pointer; 25 } 26 }