#86 Added tags to dashboard general settings panel, search and search display needs more work (grouping, facets etc)

This commit is contained in:
Torkel Odegaard
2014-02-11 22:09:38 +01:00
parent a35ed05bc3
commit c81c4f184b
7 changed files with 57 additions and 32 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+25
View File
@@ -542,4 +542,29 @@ div.flot-text {
border-top-color: @popoverArrowColor;
}
}
}
// Labels & Badges
// Colors
// Only give background-color difference to links (and to simplify, we don't qualifty with `a` but [href] attribute)
.label,
.badge {
color: @linkColor;
// Important (red)
&-important { background-color: @errorText; }
&-important[href] { background-color: darken(@errorText, 10%); }
// Warnings (orange)
&-warning { background-color: @orange; }
&-warning[href] { background-color: darken(@orange, 10%); }
// Success (green)
&-success { background-color: @successText; }
&-success[href] { background-color: darken(@successText, 10%); }
// Info (turquoise)
&-info { background-color: @purple; }
&-info[href] { background-color: darken(@infoText, 10%); }
// Inverse (black)
&-inverse { background-color: @grayDark; }
&-inverse[href] { background-color: darken(@grayDark, 10%); }
}