aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/app/styles/components/badges.css
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/app/styles/components/badges.css')
-rw-r--r--server/sonar-web/src/main/js/app/styles/components/badges.css83
1 files changed, 0 insertions, 83 deletions
diff --git a/server/sonar-web/src/main/js/app/styles/components/badges.css b/server/sonar-web/src/main/js/app/styles/components/badges.css
deleted file mode 100644
index d1e3398155e..00000000000
--- a/server/sonar-web/src/main/js/app/styles/components/badges.css
+++ /dev/null
@@ -1,83 +0,0 @@
-/*
- * SonarQube
- * Copyright (C) 2009-2024 SonarSource SA
- * mailto:info AT sonarsource DOT com
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
-.badge {
- display: inline-block;
- padding: 4px;
- background-color: var(--barBorderColor);
- border-radius: 3px;
- font-size: var(--smallFontSize);
- font-weight: 600;
- color: var(--baseFontColor);
- text-transform: uppercase;
- white-space: nowrap;
- line-height: 8px;
-}
-.badge:empty {
- display: none;
-}
-
-a.badge:hover,
-a.badge:focus,
-a.badge:active {
- text-decoration: underline;
-}
-a.badge {
- border-bottom: none;
-}
-
-.list-group-item-heading > .badge {
- float: right;
- margin: 3px;
-}
-.list-group-item-heading > .badge + .badge {
- margin-right: 5px;
-}
-
-.badge-info {
- background-color: var(--alertBackgroundInfo);
- color: var(--alertTextInfo);
-}
-
-.badge-success {
- background-color: var(--alertBackgroundSuccess);
- color: var(--alertTextSuccess);
-}
-
-.badge-warning {
- background-color: var(--alertBackgroundWarning);
- color: var(--alertTextWarning);
-}
-
-.badge-error {
- background-color: var(--alertBackgroundError);
- color: var(--alertTextError);
-}
-
-.counter-badge {
- color: var(--badgeBlueColor);
- background-color: var(--badgeBlueBackground);
- font-size: var(--smallFontSize);
- padding: 0.3em 0.8em;
- border-radius: 1em;
-}
-
-.counter-badge:empty {
- display: none;
-}