github.com/argoproj/argo-cd/v3@v3.2.1/ui/src/app/settings/components/repos-list/repos-list.scss (about) 1 @import 'node_modules/argo-ui/src/styles/config'; 2 @import 'node_modules/argo-ui/src/styles/theme'; 3 4 .repos-list { 5 &__top-panel { 6 padding: 1em; 7 & > .columns:first-child { 8 font-size: 8em; 9 text-align: center; 10 } 11 & > .columns:last-child { 12 text-align: center; 13 border-left: 2px solid $argo-color-gray-4; 14 & > p { 15 margin-bottom: 0; 16 margin-top: 24px; 17 &:first-of-type { 18 font-size: 1.25em; 19 } 20 } 21 & > button { 22 width: 15em; 23 } 24 } 25 } 26 .argo-table-list { 27 .item-clickable { 28 cursor: pointer; 29 &:hover { 30 box-shadow: 1px 2px 3px rgba($argo-color-gray-9, 0.1), 0 0 0 1px rgba($argo-color-teal-5, 0.5); 31 } 32 } 33 .argo-dropdown { 34 float: right; 35 } 36 } 37 textarea.argo-field { 38 height: 20em; 39 width: 1024em; 40 white-space: pre; 41 overflow-wrap: normal; 42 overflow-x: scroll; 43 } 44 45 .argo-container { 46 @include themify($themes) { 47 input.argo-field { 48 border-bottom: 2px solid themed('light-argo-teal-5') !important; 49 } 50 } 51 52 input.argo-field:focus { 53 outline: none; 54 border-bottom: 2px solid $argo-color-teal-6 !important; 55 } 56 } 57 }