Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / app / assets / stylesheets / badges.css.scss
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 /* Colors
6  * Contextual variations of badges
7  * Bootstrap 3.0 removed contexts for badges, we re-introduce them, based on what is done for labels
8  */
9
10 .badge.badge-error {
11   background-color: #b94a48;
12 }
13
14 .badge.badge-warning {
15   background-color: #f89406;
16 }
17
18 .badge.badge-success {
19   background-color: #468847;
20 }
21
22 .badge.badge-info {
23   background-color: #3a87ad;
24 }
25
26 .badge.badge-inverse {
27   background-color: #333333;
28 }
29
30 .badge.badge-alert {
31     background: red;
32 }