app/assets/stylesheets/simple_discussion.scss in simple_discussion-0.9.4 vs app/assets/stylesheets/simple_discussion.scss in simple_discussion-0.9.5

- old
+ new

@@ -18,15 +18,35 @@ } } /* Formatting for the forum threads */ .forum-thread { - h4 a { - color: #222; + margin-bottom: -20px; + + h4 { + margin-bottom: 4px; + + a { + color: #222; + font-size: 16px; + font-weight: normal; + line-height: 1.1; + } } } +.forum-thread-filters a { + color: #555555; + display: block; + + &:hover { + color: #222222; + font-weight: bold; + text-decoration: none + } +} + .thread-details { color: #999; font-size: 12px; text-transform: uppercase; } @@ -43,10 +63,15 @@ .count { font-size: 1.5em; font-weight: 300; line-height: 1em; } + + &:hover { + color: #222; + text-decoration: none; + } } /* Formatting for the forum posts themselves */ .forum-post { position: relative; @@ -61,6 +86,19 @@ } &.solved { border: 2px solid #5cb85c; } +} + +/* Formatting for the forum hr to match card border */ +.simple_discussion hr { + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.125); + margin: 24px -20px; +} + +.simple_discussion .text-muted { + color: #999; + margin-top: 6px; + font-size: 13px; }