discourse/app/assets/stylesheets/desktop/topic.scss

252 lines
4.3 KiB
SCSS
Raw Normal View History

@import "common/foundation/variables";
@import "common/foundation/mixins";
2013-09-05 15:37:07 -04:00
.post-info a {color: $primary_light;}
2013-09-05 15:37:07 -04:00
.topic-meta-data-inside {
2013-10-23 17:00:02 -04:00
float: right;
margin-top: -22px;
2013-10-22 10:41:09 -04:00
float: right;
font-size: 12px;
2013-09-05 15:37:07 -04:00
}
2013-10-23 17:00:02 -04:00
.post-actions {
@include unselectable;
2013-10-24 00:30:41 -04:00
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;
2013-09-05 15:37:07 -04:00
}
.edits {margin-right: 5px;}
2013-09-05 15:37:07 -04:00
#topic-title {
2013-11-12 08:36:00 -05:00
z-index: 1000;
padding: 14px 0 8px 0;
margin-bottom: 20px;
2013-11-12 08:36:00 -05:00
.star {
font-size: 20px;
margin-top: 8px;
margin-right: 8px;
}
#edit-title { width: 500px; }
.category-combobox {
width: 250px;
.chzn-drop {
left: -9000px;
width: 248px;
}
.chzn-search input {
width: 198px;
}
}
h1 {
2013-11-12 08:36:00 -05:00
font-size: 2em;
margin: 0;
line-height: 1.2em;
overflow: hidden;
a.badge-category { vertical-align: top; }
a.edit-topic { font-size: 15px; position: absolute; margin-left: 8px; }
}
.topic-statuses {
margin-top: -2px;
2013-12-09 16:27:49 -05:00
.fa-thumb-tack { margin-top: -1px; }
}
2013-11-12 08:36:00 -05:00
.chzn-container { vertical-align: middle; }
2013-09-05 15:37:07 -04:00
}
#topic-closing-info {
border-top: 1px solid $primary_lighter;
margin-left: 10px;
margin-top: 10px;
2013-12-09 16:27:49 -05:00
height: 20px;
2013-09-05 15:37:07 -04:00
}
#topic-progress-wrapper {
position: fixed;
right: 50%;
2013-09-05 15:37:07 -04:00
width: 0;
bottom: 0px;
z-index: 500;
outline: 1px solid transparent;
}
.reply-new {
i {
font-size: 12px;
margin-right: 5px;
background: $secondary;
border: 1px solid $primary_lighter;
padding: 2px 4px;
border-radius: 20px;
transition: linear 0.15s;
-webkit-transition: linear 0.15s;
}
2013-09-05 15:37:07 -04:00
}
a.reply-new {
position: absolute;
color: $primary_medium;
margin-top: -2px;}
a:hover.reply-new {
color: $tertiary;
i {background: $tertiary_lightest;
border: 1px solid $tertiary;
padding: 2px 4px;
}
}
2013-09-05 15:37:07 -04:00
#topic-progress {
position: relative;
left: 302px;
2013-09-05 15:37:07 -04:00
&.hidden {
display: none;
}
border: none;
background-color: lighten($primary_lighter, 9%);
color: $primary_medium;
2013-09-05 15:37:07 -04:00
width: 130px;
height: 34px;
2013-09-05 15:37:07 -04:00
.nums {
position: relative;
top: 9px;
width: 100%;
text-align: center;
z-index: 1;
}
button {
padding: 3px 0 0 0;
2013-09-05 15:37:07 -04:00
cursor: pointer;
z-index: 1000;
position: absolute;
top: 2px;
2013-09-05 15:37:07 -04:00
left: 4px;
border: 0;
background: none;
color: $primary_medium;
width: 50%;
text-align: left;
height: 30px;
margin: 0;
2013-09-05 15:37:07 -04:00
i {
font-size: 18px;
}
&:nth-of-type(2) {
right: 4px;
left: auto;
text-align: right;
2013-09-05 15:37:07 -04:00
}
&:disabled {
cursor: default;
color: $primary_medium;
2013-09-05 15:37:07 -04:00
}
}
h4 {
display: inline;
font-size: 18px;
line-height: 15px;
}
.bg {
position: absolute;
top: 0px;
bottom: 0px;
width: 0px;
border-right: 1px solid lighten($primary_lighter, 7%);
2013-09-05 15:37:07 -04:00
// background-color: #d4eaf4;
// background-color: #C5E8F7;
background-color: $success_light;
transition: width .75s;
2013-09-05 15:37:07 -04:00
}
}
#topic-progress-wrapper.docked {
#topic-progress {
}
position: absolute;
bottom: -70px;
2013-09-05 15:37:07 -04:00
}
.topic-statuses .topic-status {
padding: 0;
i {
font-size:20px;
2013-09-05 15:37:07 -04:00
}
}
#suggested-topics .topic-statuses .topic-status {
padding: 0;
i {
font-size:15px;
}
}
.heatmap-high {color: #f77 !important;}
.heatmap-med {color: #a00 !important;}
.heatmap-low {color: #700 !important;}
2013-09-05 15:37:07 -04:00
2013-10-22 10:41:09 -04:00
#topic-filter {
background-color: $highlight_light;
2013-10-22 10:41:09 -04:00
padding: 8px;
bottom: 0;
position: fixed;
width: 100%;
font-size: 15px;
z-index: 495
}
2013-10-23 17:00:02 -04:00
2013-10-30 09:11:05 -04:00
/* Code, KBD, Sub/sup formatting */
code,kbd,pre,samp{
font-family:monospace, serif; font-size:1em;
2013-10-30 09:11:05 -04:00
}
pre { white-space:pre-wrap;}
q{ quotes:"\201C" "\201D" "\2018" "\2019"; }
small{ font-size:80%; }
2013-10-30 09:11:05 -04:00
sub,sup{
font-size:75%;
line-height:0;
position:relative;
vertical-align:baseline;
2013-10-30 09:11:05 -04:00
}
sup{top:-0.5em; }
sub{bottom:-0.25em; }
figure{margin:0; }
2013-10-30 09:11:05 -04:00
fieldset{
border:1px solid $primary_light;
2013-10-30 09:11:05 -04:00
margin:0 2px;
padding:0.35em 0.625em 0.75em;
2013-10-30 09:11:05 -04:00
}
legend{
border:0;
padding:0;
2013-10-30 09:11:05 -04:00
}
2013-11-29 22:44:00 -05:00
kbd
{
background-color: $secondary;
border:1px solid $primary_lighter;
2013-11-29 22:44:00 -05:00
border-radius: 3px;
box-shadow: 0 1px 0 $primary_lightest;
color: $primary;
2013-11-29 22:44:00 -05:00
display: inline-block;
font-size: 12px;
line-height: 1.4;
margin: 0 .1em;
padding: .1em .6em;
}