de-emphasize notification state text slightly

This commit is contained in:
Jeff Atwood 2016-05-23 03:36:26 -07:00
parent 8c52508007
commit b6db022051
2 changed files with 20 additions and 5 deletions

View file

@ -448,7 +448,7 @@ a.star {
padding: 10px 10px 0 0;
p {
line-height: 32px;
color: $primary;
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
}
.btn {
margin-bottom: 5px;
@ -757,8 +757,16 @@ $topic-avatar-width: 45px;
border: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
box-shadow: 0 1px 5px rgba(0,0,0, .4);
background-clip: padding-box;
span {font-size: 0.857em;}
.title {font-weight: bold; display: block; font-size: 1em;}
span {
font-size: 0.857em;
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
}
span.title {
font-weight: bold;
display: block;
font-size: 1em;
color: $primary;
}
}
.dropdown-menu a {
display: block;

View file

@ -327,10 +327,11 @@ a.star {
}
}
/* this is to force the drop-down notification state description para below the button */
#topic-footer-buttons p {
clear: both;
clear: both; /* this is to force the drop-down notification state description para below the button */
margin: 0;
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
}
#suggested-topics {
@ -408,6 +409,12 @@ iframe {
margin-right: 5px;
padding-top: 1px;
}
span {
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
}
span.title {
color: $primary;
}
}
.btn-group {