From c2ae8c4184d2c084a63cdee243e8561659daf0b8 Mon Sep 17 00:00:00 2001 From: Reda Lemeden Date: Thu, 8 Mar 2012 17:02:02 -0500 Subject: [PATCH] Added styling for answers with accepted answer and unanswered questions --- sass/discussion/_question-view.scss | 2 ++ sass/discussion/_questions.scss | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/sass/discussion/_question-view.scss b/sass/discussion/_question-view.scss index 99f8ccce9c..c644132d92 100644 --- a/sass/discussion/_question-view.scss +++ b/sass/discussion/_question-view.scss @@ -83,6 +83,8 @@ div.question-header { &.question-delete { color: $mit-red; + text-decoration: none; + cursor: pointer; } } diff --git a/sass/discussion/_questions.scss b/sass/discussion/_questions.scss index 17fc2056dc..3a7ab2f7c1 100644 --- a/sass/discussion/_questions.scss +++ b/sass/discussion/_questions.scss @@ -198,6 +198,22 @@ ul.question-list, div#question-list { } &.answers { + &.accepted { + + @include linear-gradient(#fff, lighten( #c4dfbe, 12% )); + border-color: #c4dfbe; + + span, div { + color: darken(#c4dfbe, 35%); + } + } + &.no-answers { + + + span, div { + color: lighten($mit-red, 20%); + } + } } &.votes {