github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/services/frontend-service/src/ui/components/RolloutStatusDescription/RolloutStatusDescription.scss (about) 1 /*This file is part of kuberpult. 2 3 Kuberpult is free software: you can redistribute it and/or modify 4 it under the terms of the Expat(MIT) License as published by 5 the Free Software Foundation. 6 7 Kuberpult is distributed in the hope that it will be useful, 8 but WITHOUT ANY WARRANTY; without even the implied warranty of 9 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 MIT License for more details. 11 12 You should have received a copy of the MIT License 13 along with kuberpult. If not, see <https://directory.fsf.org/wiki/License:Expat>. 14 15 Copyright 2023 freiheit.com*/ 16 .rollout__description { 17 border: 1px solid #eee; 18 font-weight: bold; 19 font-size: 13px; 20 padding: 4px; 21 margin: -2px; 22 border-radius: 6px; 23 display: block; 24 } 25 26 .rollout__description_unknown { 27 @extend .rollout__description; 28 background-color: var(--mdc-theme-on-surface); 29 color: var(--mdc-theme-surface); 30 border-color: var(--mdc-theme-surface); 31 } 32 33 .rollout__description_successful { 34 @extend .rollout__description; 35 background-color: var(--mdc-theme-surface); 36 color: var(--mdc-theme-on-surface); 37 border-color: var(--mdc-theme-on-secondary); 38 } 39 40 .rollout__description_error, 41 .rollout__description_unhealthy { 42 @extend .rollout__description; 43 background-color: var(--mdc-theme-error); 44 color: var(--mdc-theme-on-secondary); 45 border-color: var(--mdc-theme-on-secondary); 46 } 47 48 .rollout__description_progressing, 49 .rollout__description_pending { 50 @extend .rollout__description; 51 background-color: var(--mdc-theme-secondary); 52 color: var(--mdc-theme-on-secondary); 53 border-color: var(--mdc-theme-on-secondary); 54 }