Index: static/scss/base/_utilities.scss |
=================================================================== |
--- a/static/scss/base/_utilities.scss |
+++ b/static/scss/base/_utilities.scss |
@@ -81,8 +81,22 @@ |
.unstyled |
{ |
margin: 0; |
padding: 0; |
border: 0; |
background: none; |
} |
+ |
+// Font Colours //////////////////////////////////////////////////////////// |
+ |
+.muted |
+{ |
+ color: $gray-medium; |
+} |
+ |
+a.muted, |
+.muted a |
+{ |
+ color: $gray-medium !important; |
+ text-decoration: underline; |
juliandoucette
2017/09/06 17:48:21
It seems strange for a color named class to apply
ire
2017/09/08 09:53:34
It is specific to link elements. We want all muted
juliandoucette
2017/09/08 17:02:52
I think what you did here makes sense.
ire
2017/09/12 08:57:53
Acknowledged.
|
+} |