github.com/argoproj/argo-cd/v2@v2.10.9/ui/src/app/applications/components/application-node-info/application-node-info.scss (about) 1 @import 'node_modules/argo-ui/src/styles/config'; 2 3 .application-node-info { 4 &__manifest { 5 overflow-x: auto; 6 7 .tabs__content { 8 background-color: white; 9 } 10 11 &--raw { 12 font-family: 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', Monaco, Courier, monospace; 13 white-space: pre; 14 font-size: 12px; 15 color: gray; 16 padding: 0 0 0 12px; 17 line-height: 2em; 18 } 19 } 20 21 &__labels { 22 line-height: 28px; 23 } 24 25 &__label { 26 background-color: $argo-color-gray-5; 27 color: white; 28 border-radius: 5px; 29 padding: 4px; 30 display: inline-block; 31 margin-right: 2px; 32 line-height: 14px; 33 } 34 35 &__checkboxes { 36 text-align: right; 37 label { 38 padding-right: 2em; 39 color: $argo-color-gray-8; 40 } 41 } 42 &__err_msg { 43 padding-right: 2em; 44 color: $argo-failed-color; 45 } 46 &__container { 47 display: flex; 48 align-items: center; 49 flex-direction: row; 50 line-height: 1.8; 51 border-bottom: 1px solid rgba(222, 230, 235, 0.7); 52 53 &--name { 54 width: 15%; 55 } 56 &--highlight { 57 font-style: italic; 58 } 59 60 &--hint { 61 text-decoration: underline; 62 text-decoration-style: dashed; 63 cursor: pointer; 64 &:hover { 65 text-decoration: none; 66 } 67 } 68 &:last-child { 69 border-bottom: none; 70 } 71 } 72 }