github.com/argoproj/argo-cd/v3@v3.2.1/ui/src/app/applications/components/application-summary/application-summary.scss (about) 1 @import 'node_modules/argo-ui/src/styles/config'; 2 @import 'node_modules/argo-ui/src/styles/theme'; 3 4 .application-summary { 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 &__links-rows { 46 margin: 10px 0; 47 } 48 49 &__links-row { 50 display: flex; 51 align-items: center; 52 height: 35px; 53 } 54 55 .argo-field { 56 line-height: 1.15; 57 button { 58 @include themify($themes) { 59 color: themed('text-1'); 60 } 61 } 62 } 63 64 .white-box__details p { 65 font-weight: 500; 66 @include themify($themes) { 67 color: themed('text-1'); 68 } 69 } 70 71 .white-box__details-row .row { 72 padding-left: 1em; 73 padding-right: 1em; 74 } 75 76 .white-box__details-row .row .columns:last-child { 77 padding-left: 1em; 78 } 79 80 .select { 81 padding-bottom: 0; 82 } 83 84 .row.application-retry-options { 85 .columns.application-retry-options__item{ 86 padding-left: 0; 87 padding-right: 10px; 88 } 89 90 .argo-form-row__error-msg { 91 position: static; 92 line-height: 1; 93 } 94 } 95 }