Merge branch '19954-permission-dedup-doc'
[arvados.git] / apps / workbench / app / assets / stylesheets / badges.css.scss
index e38b3643b7794594abb6a2fd5b91cfaa69dbdaf9..ddaf5b9ea53e29763b16c560971c1ec64966a508 100644 (file)
@@ -1,21 +1,32 @@
+// Copyright (C) The Arvados Authors. All rights reserved.
+//
+// SPDX-License-Identifier: AGPL-3.0
+
 /* Colors
  * Contextual variations of badges
  * Bootstrap 3.0 removed contexts for badges, we re-introduce them, based on what is done for labels
- *= require bootstrap
  */
 
-.badge-error {
+.badge.badge-error {
   background-color: #b94a48;
 }
-.badge-warning {
+
+.badge.badge-warning {
   background-color: #f89406;
 }
-.badge-success {
+
+.badge.badge-success {
   background-color: #468847;
 }
-.badge-info {
+
+.badge.badge-info {
   background-color: #3a87ad;
 }
-.badge-inverse {
+
+.badge.badge-inverse {
   background-color: #333333;
 }
+
+.badge.badge-alert {
+    background: red;
+}