mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:29:18 +08:00
258 lines
4.8 KiB
SCSS
258 lines
4.8 KiB
SCSS
.post-info a {
|
|
color: lighten($primary_text_color, 50%);
|
|
padding-right: 5px;
|
|
}
|
|
|
|
.topic-meta-data-inside {
|
|
float: right;
|
|
margin-top: -22px;
|
|
float: right;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.post-actions {
|
|
@include unselectable;
|
|
clear: both;
|
|
text-align: right;
|
|
.post-action {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
.post-menu-area {
|
|
margin-bottom: 10px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.post-info {
|
|
display: inline-block;
|
|
}
|
|
|
|
.edits {margin-right: 5px;}
|
|
|
|
#topic-title {
|
|
z-index: 1000;
|
|
padding: 14px 0 8px 0;
|
|
margin-bottom: 20px;
|
|
.star {
|
|
font-size: 20px;
|
|
margin-top: 6px;
|
|
margin-right: 6px;
|
|
}
|
|
#edit-title { width: 500px; }
|
|
.category-combobox {
|
|
width: 250px;
|
|
.chzn-drop {
|
|
left: -9000px;
|
|
width: 248px;
|
|
}
|
|
.chzn-search input {
|
|
width: 198px;
|
|
}
|
|
}
|
|
h1 {
|
|
font-size: 1.8em;
|
|
margin: 0;
|
|
line-height: 1.2em;
|
|
overflow: hidden;
|
|
a {color: $primary_text_color;}
|
|
a.badge-category { vertical-align: top; margin-top: 4px; }
|
|
a.edit-topic { font-size: 15px; position: absolute; margin-left: 8px; }
|
|
}
|
|
.topic-statuses {
|
|
margin-top: -2px;
|
|
.fa-thumb-tack { padding-left: 3px;
|
|
}
|
|
|
|
}
|
|
.chzn-container { vertical-align: middle; }
|
|
.private-message-glyph { display: none; }
|
|
}
|
|
|
|
.private-message-glyph { color: lighten($primary_text_color, 60%); }
|
|
.private_message #topic-title .private-message-glyph { display: inline; }
|
|
|
|
#topic-closing-info {
|
|
border-top: 1px solid $primary_border_color;
|
|
padding-top: 10px;
|
|
height: 20px;
|
|
}
|
|
|
|
#topic-progress-wrapper {
|
|
position: fixed;
|
|
right: 50%;
|
|
width: 0;
|
|
bottom: 0;
|
|
z-index: 500;
|
|
outline: 1px solid transparent;
|
|
}
|
|
|
|
.reply-new {
|
|
i {
|
|
font-size: 12px;
|
|
margin-right: 5px;
|
|
background: $primary_background_color;
|
|
border: 1px solid $primary_border_color;
|
|
padding: 2px 4px;
|
|
border-radius: 20px;
|
|
transition: linear 0.15s;
|
|
-webkit-transition: linear 0.15s;
|
|
}
|
|
}
|
|
|
|
a.reply-new {
|
|
position: absolute;
|
|
color: lighten($primary_text_color, 35%);
|
|
margin-top: -2px;}
|
|
a:hover.reply-new {
|
|
color: $link-color;
|
|
i {background: $emphasis_background_color;
|
|
border: 1px solid $emphasis_border_color;
|
|
padding: 2px 4px;
|
|
}
|
|
}
|
|
|
|
#topic-progress {
|
|
position: relative;
|
|
left: 345px;
|
|
&.hidden {
|
|
display: none;
|
|
}
|
|
border: none;
|
|
background-color: lighten($primary_text_color, 70%);
|
|
color: lighten($primary_text_color, 35%);
|
|
width: 130px;
|
|
height: 34px;
|
|
|
|
.nums {
|
|
position: relative;
|
|
top: 9px;
|
|
width: 100%;
|
|
text-align: center;
|
|
z-index: 1;
|
|
}
|
|
button {
|
|
padding: 3px 1px 0 0;
|
|
cursor: pointer;
|
|
z-index: 1000;
|
|
position: absolute;
|
|
top: 2px;
|
|
left: 4px;
|
|
border: 0;
|
|
background: none;
|
|
color: lighten($primary_text_color, 35%);
|
|
width: 50%;
|
|
text-align: left;
|
|
height: 30px;
|
|
margin: 0;
|
|
i {
|
|
font-size: 18px;
|
|
}
|
|
&:nth-of-type(2) {
|
|
right: 4px;
|
|
left: auto;
|
|
text-align: right;
|
|
}
|
|
&:disabled {
|
|
cursor: default;
|
|
color: lighten($primary_text_color, 35%);
|
|
}
|
|
}
|
|
h4 {
|
|
display: inline;
|
|
font-size: 18px;
|
|
line-height: 15px;
|
|
}
|
|
.bg {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 0;
|
|
border-right: 1px solid $primary_border_color;
|
|
// background-color: #d4eaf4;
|
|
// background-color: #C5E8F7;
|
|
background-color: $success_background_color;
|
|
transition: width .75s;
|
|
}
|
|
}
|
|
|
|
#topic-progress-wrapper.docked {
|
|
position: absolute;
|
|
bottom: -70px;
|
|
|
|
}
|
|
|
|
#suggested-topics .topic-statuses .topic-status {
|
|
padding: 0;
|
|
i {
|
|
font-size:15px;
|
|
}
|
|
}
|
|
|
|
.heatmap-high {color: $heatmap-high !important;}
|
|
.heatmap-med {color: $heatmap-med !important;}
|
|
.heatmap-low {color: $heatmap-low !important;}
|
|
|
|
|
|
|
|
#topic-filter {
|
|
background-color: $highlight_background_color;
|
|
padding: 8px;
|
|
bottom: 0;
|
|
position: fixed;
|
|
width: 100%;
|
|
font-size: 15px;
|
|
z-index: 495
|
|
}
|
|
|
|
/* Code, KBD, Sub/sup formatting */
|
|
|
|
code,kbd,pre,samp{
|
|
font-family:monospace, serif; font-size:1em;
|
|
}
|
|
pre {
|
|
code {
|
|
white-space:pre-wrap;
|
|
display: block;
|
|
padding: 5px 10px;
|
|
color: $primary_text_color;
|
|
background: lighten($secondary_background_color, 76%);
|
|
max-height: 500px;
|
|
}
|
|
}
|
|
q{ quotes:"\201C" "\201D" "\2018" "\2019"; }
|
|
small{ font-size:80%; }
|
|
sub,sup{
|
|
font-size:75%;
|
|
line-height:0;
|
|
position:relative;
|
|
vertical-align:baseline;
|
|
}
|
|
sup{top:-0.5em; }
|
|
sub{bottom:-0.25em; }
|
|
figure{margin:0; }
|
|
fieldset{
|
|
border:1px solid $primary_border_color;
|
|
margin:0 2px;
|
|
padding:0.35em 0.625em 0.75em;
|
|
}
|
|
legend{
|
|
border:0;
|
|
padding:0;
|
|
}
|
|
|
|
kbd
|
|
{
|
|
background-color: $primary_background_color;
|
|
border:1px solid $primary_border_color;
|
|
border-radius: 3px;
|
|
box-shadow: 0 1px 0 rgba($primary_shadow_color, .9);
|
|
color: $primary_text_color;
|
|
display: inline-block;
|
|
font-size: 12px;
|
|
line-height: 1.4;
|
|
margin: 0 .1em;
|
|
padding: .1em .6em;
|
|
}
|