adding highlight & fade to linked topic

This commit is contained in:
Kris Aubuchon 2013-11-07 23:12:18 -05:00
parent 15c29fdbed
commit 40aa62f613
2 changed files with 21 additions and 0 deletions

View File

@ -37,6 +37,7 @@ h1 .topic-statuses .topic-status i {margin-right: 5px;}
border: 1px solid #ddd; border: 1px solid #ddd;
font-size: 12px; font-size: 12px;
margin-left: -8px; margin-left: -8px;
background: #fff;
} }
.avoid-tab { .avoid-tab {
@ -679,6 +680,19 @@ blockquote { /* solo quotes */
position: relative; position: relative;
width: 720px; width: 720px;
padding: 10px 10px 15px 20px; padding: 10px 10px 15px 20px;
.highlighted {
background-color: lighten(yellow, 45%) !important;
}
}
.bottom-round.contents.regular {
-webkit-transition: background-color .25s linear;
transition: background-color .25s linear;
} }
.posts-wrapper { .posts-wrapper {

View File

@ -157,6 +157,13 @@ a:hover.reply-new {
} }
} }
#suggested-topics .topic-statuses .topic-status {
padding: 0;
i {
font-size:15px;
}
}
.heatmap-high {color: #f77 !important;} .heatmap-high {color: #f77 !important;}
.heatmap-med {color: #a00 !important;} .heatmap-med {color: #a00 !important;}
.heatmap-low {color: #700 !important;} .heatmap-low {color: #700 !important;}