github.com/freiheit-com/kuberpult@v1.24.2-0.20240328135542-315d5630abe6/services/frontend-service/src/ui/components/ReleaseVersion/ReleaseVersion.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 .release-version { 17 font-family: monospace; 18 padding: 2px; 19 margin-right: 0.5em; 20 border: 1px solid var(--mdc-theme-surface); 21 color: var(--mdc-theme-on-surface-light); 22 border-radius: $border-radius-small; 23 background: var(--mdc-theme-surface); 24 font-weight: bold; 25 } 26 27 .release-version__undeploy-version { 28 @extend .release-version; 29 font-weight: bold; 30 border-color: var(--mdc-theme-on-surface-light); 31 } 32 33 .release-version__commit-id { 34 @extend .release-version; 35 font-weight: bold; 36 border-color: var(--mdc-theme-on-surface-light); 37 } 38 39 .release-version__display-version { 40 @extend .release-version; 41 42 border-color: var(--mdc-theme-secondary); 43 background: var(--mdc-theme-secondary); 44 color: var(--mdc-theme-on-secondary); 45 } 46 47 .release-version__version { 48 @extend .release-version; 49 font-weight: bold; 50 border-color: var(--mdc-theme-on-surface-light); 51 }