Rafał Pitoń 11 лет назад
Родитель
Сommit
343c1e67b8

+ 1 - 0
misago/static/misago/css/misago/misago.less

@@ -8,6 +8,7 @@
 @import "markup.less";
 @import "pager.less";
 @import "states.less";
+@import "typography.less";
 @import "yesnoswitch.less";
 
 // Layout elements

+ 14 - 0
misago/static/misago/css/misago/typography.less

@@ -0,0 +1,14 @@
+//
+// Typography
+// --------------------------------------------------
+
+
+.text-muted {
+  strong {
+    color: darken(@text-muted, 20%);
+  }
+
+  a:link, a:visited, a:active, a:hover {
+    color: @link-muted-color;
+  }
+}

+ 1 - 2
misago/static/misago/css/misago/variables.less

@@ -29,8 +29,7 @@
 // Text muted color
 @text-muted:            darken(@body-bg, 40%);
 
-@link-muted-color:            @gray;
-@link-muted-hover-color:      @gray-darker;
+@link-muted-color:            @gray-darker;
 
 // Components
 @component-active-bg:         @brand-secondary;