mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:24:03 +08:00
48 lines
991 B
SCSS
48 lines
991 B
SCSS
.names {
|
|
float: left;
|
|
.username {
|
|
font-weight: bold;
|
|
}
|
|
span {
|
|
font-size: 13px;
|
|
padding-right: 8px;
|
|
a {
|
|
color: scale-color($primary, $lightness: 30%);
|
|
}
|
|
}
|
|
.fa {
|
|
font-size: 11px;
|
|
margin-left: 3px;
|
|
color: scale-color($primary, $lightness: 40%);
|
|
}
|
|
.new_user a, .user-title, .user-title a {
|
|
color: scale-color($primary, $lightness: 50%);
|
|
}
|
|
}
|
|
|
|
// global styles for the cooked HTML content in posts (and preview)
|
|
.cooked, #wmd-preview {
|
|
word-wrap: break-word;
|
|
h1, h2, h3, h4, h5, h6 { margin: 30px 0 10px; }
|
|
h1 { line-height: 1em; } /* normalize.css sets h1 font size but not line height */
|
|
a { word-wrap: break-word; }
|
|
}
|
|
|
|
// we use aside to hold expandable quotes (versus, say, static blockquotes)
|
|
aside.quote {
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.cooked .highlight {
|
|
background-color: scale-color($highlight, $lightness: 40%);
|
|
padding: 2px;
|
|
margin: -2px;
|
|
}
|
|
|
|
.post-action {
|
|
.undo-action, .act-action{
|
|
margin-left: 5px;
|
|
}
|
|
}
|