diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 44581d473c..b5ef18ebb1 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -4523,22 +4523,6 @@ a.badge:hover { background-color: #356635; } -.badge-info { - background-color: #3a87ad; -} - -.badge-info[href] { - background-color: #2d6987; -} - -.badge-inverse { - background-color: #333333; -} - -.badge-inverse[href] { - background-color: #1a1a1a; -} - .btn .badge { position: relative; top: -1px; diff --git a/docs/components.html b/docs/components.html index ac9dc91ce2..b870c1f3fd 100644 --- a/docs/components.html +++ b/docs/components.html @@ -1478,7 +1478,7 @@ - Important + Danger 6 @@ -1487,28 +1487,6 @@ <span class="badge badge-danger">6</span> - - - Info - - - 8 - - - <span class="badge badge-info">8</span> - - - - - Inverse - - - 10 - - - <span class="badge badge-inverse">10</span> - - diff --git a/docs/templates/pages/components.mustache b/docs/templates/pages/components.mustache index 4db9d84dce..b3d0b29ea9 100644 --- a/docs/templates/pages/components.mustache +++ b/docs/templates/pages/components.mustache @@ -1410,7 +1410,7 @@ - Important + Danger 6 @@ -1419,28 +1419,6 @@ <span class="badge badge-danger">6</span> - - - Info - - - 8 - - - <span class="badge badge-info">8</span> - - - - - Inverse - - - 10 - - - <span class="badge badge-inverse">10</span> - - diff --git a/less/badges.less b/less/badges.less index b8de24df1a..5511bc81f3 100644 --- a/less/badges.less +++ b/less/badges.less @@ -44,12 +44,6 @@ a.badge { // Success (green) &-success { background-color: @state-success-text; } &-success[href] { background-color: darken(@state-success-text, 10%); } - // Info (turquoise) - &-info { background-color: @state-info-text; } - &-info[href] { background-color: darken(@state-info-text, 10%); } - // Inverse (black) - &-inverse { background-color: @grayDark; } - &-inverse[href] { background-color: darken(@grayDark, 10%); } } // Quick fix for labels/badges in buttons