Skip to content
Snippets Groups Projects
Commit 9a7f03f9 authored by Carsten  Rose's avatar Carsten Rose
Browse files

Merge branch 'F9782BadgeColorize'

parents 4a685994 4fd9ff50
Loading
Checking pipeline status
......@@ -1210,4 +1210,61 @@ thead.qfq-sticky td {
z-index: 920;
}
// No colorized badges in BS3: make our own
.qfq-badge {
padding: 1px 9px 2px;
font-size: 12.025px;
font-weight: bold;
white-space: nowrap;
color: #ffffff;
background-color: #999999;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
}
.qfq-badge:hover {
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
.qfq-badge-error {
background-color: #b94a48;
}
.qfq-badge-error:hover {
background-color: #953b39;
}
.qfq-badge-warning {
background-color: #f89406;
}
.qfq-badge-warning:hover {
background-color: #c67605;
}
.qfq-badge-success {
background-color: #468847;
}
.qfq-badge-success:hover {
background-color: #356635;
}
.qfq-badge-info {
background-color: #3a87ad;
}
.qfq-badge-info:hover {
background-color: #2d6987;
}
.qfq-badge-inverse {
background-color: #333333;
}
.qfq-badge-inverse:hover {
background-color: #1a1a1a;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment