github.com/argoproj/argo-cd/v3@v3.2.1/ui/src/app/applications/components/application-parameters/application-parameters.scss (about) 1 @import 'node_modules/argo-ui/src/styles/config'; 2 @import 'node_modules/argo-ui/src/styles/theme'; 3 4 .application-parameters { 5 &__labels { 6 line-height: 28px; 7 display: flex; 8 align-items: center; 9 height: 100%; 10 flex-wrap: wrap; 11 padding-top: 0.5em; 12 } 13 14 &__label { 15 background-color: $argo-color-gray-5; 16 color: white; 17 border-radius: 5px; 18 padding: 4px; 19 line-height: 14px; 20 margin: 0.3em 0; 21 margin-right: 2px; 22 } 23 24 &__sort-icon { 25 cursor: pointer; 26 position: absolute; 27 font-size: 1.3em; 28 left: -1em; 29 30 &.fa-sort-up { 31 top: 10px; 32 } 33 34 &.fa-sort-down { 35 bottom: 10px; 36 } 37 } 38 &__remove-icon { 39 cursor: pointer; 40 position: absolute; 41 top: 1em; 42 right: 1em; 43 } 44 45 .source-panel-buttons { 46 margin-bottom: 10px; 47 } 48 49 .argo-field { 50 line-height: 1.15; 51 } 52 53 .white-box__details p { 54 font-weight: 500; 55 @include themify($themes) { 56 color: themed('text-1'); 57 } 58 } 59 60 .white-box__details-row .row { 61 padding-left: 1em; 62 padding-right: 1em; 63 } 64 65 .white-box__details-row .row .columns:last-child { 66 padding-left: 1em; 67 } 68 69 .select { 70 padding-bottom: 0; 71 72 .select__value{ 73 min-height: 28px; 74 } 75 } 76 77 .row.application-retry-options { 78 .columns.application-retry-options__item{ 79 padding-left: 0; 80 padding-right: 10px; 81 } 82 83 .argo-form-row__error-msg { 84 position: static; 85 line-height: 1; 86 } 87 } 88 }