mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
de-emphasize notification state text slightly
This commit is contained in:
parent
8c52508007
commit
b6db022051
2 changed files with 20 additions and 5 deletions
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue