Commit ddc6b5ac by clrux

Merge pull request #11041 from edx/clrux/ac-295

LMS: Adding missing third topic state
parents e6a5ef81 c603380a
...@@ -176,13 +176,15 @@ ...@@ -176,13 +176,15 @@
background-color: $gray-l6; background-color: $gray-l6;
&.is-unread { &.is-unread {
background: $white;
color: $blue-d1;
.forum-nav-thread-comments-count { .forum-nav-thread-comments-count {
background-color: $blue-d1; background-color: tint($blue-d1, 90%);;
color: $white; color: $blue-d1;
&:after { &:after {
border-right-color: $blue-d1; border-right-color: tint($blue-d1, 90%);;
} }
} }
} }
...@@ -192,13 +194,8 @@ ...@@ -192,13 +194,8 @@
display: block; display: block;
padding: ($baseline/4) ($baseline/2); padding: ($baseline/4) ($baseline/2);
&.is-active,
&:hover,
&:focus {
background-color: $forum-color-active-thread;
}
&.is-active { &.is-active {
background-color: $white;
color: $base-font-color; color: $base-font-color;
.forum-nav-thread-comments-count { .forum-nav-thread-comments-count {
...@@ -210,6 +207,19 @@ ...@@ -210,6 +207,19 @@
} }
} }
} }
.forum-nav-thread-comments-count {
// topic read, but has unread comments
&.is-unread {
background-color: $blue-d1;
color: $white;
&:after {
border-right-color: $blue-d1;
}
}
}
} }
%forum-nav-thread-wrapper { %forum-nav-thread-wrapper {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment