github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/services/frontend-service/src/ui/components/chip/chip.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 @use '@material/chips/styles'; 17 18 .mdc-evolution-chip { 19 height: $env-chip-height; 20 border-radius: $border-radius-small; 21 .mdc-evolution-chip__action--primary { 22 padding-left: $env-chip-padding; 23 padding-right: $env-chip-padding; 24 } 25 .env-locks { 26 display: flex; 27 flex-direction: row; 28 align-items: center; 29 padding-right: -$env-chip-padding; 30 } 31 .mdc-evolution-chip__cell { 32 color: white; 33 overflow: hidden; 34 } 35 } 36 37 .env-group-chip-list { 38 display: flex; 39 > *:not(:last-child) { 40 margin-right: $env-group-chip-margin; 41 } 42 } 43 44 .release-environment { 45 @extend .text-bold; 46 white-space: nowrap; 47 float: right; 48 .tooltip { 49 font-weight: 400; 50 } 51 } 52 53 .environment-priority-yolo { 54 background-color: $env-color-yolo; 55 } 56 .environment-priority-prod { 57 background-color: $env-color-prod; 58 } 59 .environment-priority-canary { 60 background-color: $env-color-canary; 61 } 62 .environment-priority-pre_prod { 63 background-color: $env-color-pre_prod; 64 } 65 .environment-priority-other { 66 background-color: $env-color-other; 67 } 68 .environment-priority-upstream { 69 background-color: $env-color-upstream; 70 } 71 .environment-priority-unrecognized { 72 background-color: $env-color-unrecognized; 73 }