Some messing about with view/reply/activity colours.

This commit is contained in:
Dominik Picheta 2018-05-07 21:21:34 +01:00
commit 24b60f36a5
2 changed files with 24 additions and 8 deletions

View file

@ -81,8 +81,8 @@
<img src="https://www.gravatar.com/avatar/aa81bb8117f158b6d9e6f3f174092573?s=40&amp;d=identicon" title="ErikCampobadal"><i class="avatar-presence online"></i></figure>
</td>
<td>5</td>
<td>547</td>
<td>45m</td>
<td class="views-text">547</td>
<td class="text-success">45m</td>
</tr>
<tr>
<td>Lexers and parsers in Nim</td>
@ -92,8 +92,8 @@
<img src="https://www.gravatar.com/avatar/aa81bb8117f158b6d9e6f3f174092573?s=40&amp;d=identicon" title="ErikCampobadal"><i class="avatar-presence online"></i></figure>
</td>
<td>0</td>
<td>14</td>
<td>44m</td>
<td class="views-text">14</td>
<td class="text-success">44m</td>
</tr>
<tr>
<td>I need help</td>
@ -109,7 +109,7 @@
<img src="https://www.gravatar.com/avatar/b3ed6848f575cc54c49f4916d15b65fd?s=40&amp;d=identicon" title="mratsim"></figure>
</td>
<td>4</td>
<td>24.5k</td>
<td class="popular-text">1.4k</td>
<td>1d</td>
</tr>
<tr>
@ -123,9 +123,9 @@
<img src="https://www.gravatar.com/avatar/ed45a09ddafbe85bd1f3917f6ee57593?s=40&amp;d=identicon" title="mashingan">
</figure>
</td>
<td>4</td>
<td>86.1k</td>
<td>4d</td>
<td class="text-error">4</td>
<td class="super-popular-text">24.2k</td>
<td class="text-gray">4d</td>
</tr>
</tbody>
</table>

View file

@ -47,3 +47,19 @@ $logo-height: $navbar-height - 20px;
margin-bottom: $control-padding-y;
}
// - Thread table
$super-popular-color: #f86713;
$popular-color: darken($super-popular-color, 25%);
$views-color: #545d70;
.super-popular-text {
color: $super-popular-color;
}
.popular-text {
color: $popular-color;
}
.views-text {
color: $views-color;
}