mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
166 lines
2.7 KiB
SCSS
166 lines
2.7 KiB
SCSS
/* Default badge styles. */
|
|
.user-badge {
|
|
padding: 3px 8px;
|
|
color: $primary;
|
|
border: 1px solid dark-light-diff($primary, $secondary, 90%, -65%);
|
|
line-height: 19px;
|
|
display: inline-block;
|
|
background-color: $secondary;
|
|
margin: 0 0 3px;
|
|
|
|
.fa {
|
|
padding-right: 3px;
|
|
font-size: 1.4em;
|
|
vertical-align: bottom;
|
|
}
|
|
|
|
img {
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
|
|
&.badge-type-gold .fa {
|
|
color: #ffd700;
|
|
}
|
|
|
|
&.badge-type-silver .fa {
|
|
color: #c0c0c0;
|
|
}
|
|
|
|
&.badge-type-bronze .fa {
|
|
color: #cd7f32;
|
|
}
|
|
}
|
|
|
|
/* User badge listing. */
|
|
.user-badges-list {
|
|
text-align: center;
|
|
|
|
.user-badge {
|
|
max-width: 80px;
|
|
text-align: center;
|
|
vertical-align: top;
|
|
margin: 10px;
|
|
border: none;
|
|
|
|
.fa {
|
|
display: block;
|
|
font-size: 3.571em;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
margin: auto auto 4px;
|
|
width: 55px;
|
|
height: 55px;
|
|
}
|
|
|
|
.count {
|
|
display: block;
|
|
font-size: 0.8em;
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Badge listing in /badges. */
|
|
table.badges-listing {
|
|
margin: 20px 0;
|
|
border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
|
width: 90%;
|
|
|
|
.user-badge {
|
|
font-size: $base-font-size;
|
|
}
|
|
|
|
tr.title td {
|
|
padding-top: 30px;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
tr.title {
|
|
border-top: 0px solid;
|
|
}
|
|
|
|
td {
|
|
padding: 10px 0px;
|
|
}
|
|
|
|
td.granted{
|
|
color: $success;
|
|
font-size: 120%;
|
|
}
|
|
|
|
td.grant-count {
|
|
text-align: center;
|
|
color: dark-light-choose(scale-color($primary, $lightness: 40%), scale-color($secondary, $lightness: 60%));
|
|
font-size: 120%;
|
|
}
|
|
|
|
td.badge, td.grant-count {
|
|
white-space: nowrap;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
td.info {
|
|
font-size: 0.9em;
|
|
text-align: right;
|
|
}
|
|
|
|
td.description {
|
|
}
|
|
|
|
tr {
|
|
border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
|
}
|
|
}
|
|
|
|
/* /badges/:id/:slug page styling. */
|
|
.show-badge {
|
|
.badge-user {
|
|
text-align: center;
|
|
width: 100px;
|
|
padding: 5px 10px;
|
|
margin-bottom: 10px;
|
|
display: inline-block;
|
|
|
|
.details {
|
|
margin: 0 10px;
|
|
padding-top: 3px;
|
|
color: $primary;
|
|
}
|
|
|
|
.date {
|
|
display: block;
|
|
color: lighten($primary, 40%);
|
|
font-size: 0.714em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.show-badge .user-badge-with-posts .badge-user {
|
|
width: 45%;
|
|
padding: 0 0 0 4%;
|
|
margin-bottom: 20px;
|
|
|
|
.badge-info {
|
|
width: 100px;
|
|
display: block;
|
|
float: left;
|
|
}
|
|
|
|
.post-link {
|
|
width: 250px;
|
|
display: block;
|
|
float: left;
|
|
margin-left: 18px;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
.long-description.banner {
|
|
width: 88%;
|
|
margin-bottom: 20px;
|
|
}
|