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

176 lines
3.2 KiB
SCSS
Raw Normal View History

.post-info a {color: #aaa;}
2013-09-05 15:37:07 -04:00
.topic-meta-data-inside {
float: right;
margin-top: -38px;
margin-right: 5px;
2013-09-05 15:37:07 -04:00
}
.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 {
margin-bottom: 20px;
margin: 0 60px 10px 20px;
2013-09-05 15:37:07 -04:00
h1 {
font-size: 1.5em;
margin:0;
a.edit-topic {
// let's not even bother with inline title and category edits on mobile
// use the full editor instead
visibility: hidden;
}
2014-07-01 04:15:16 -04:00
a {
color: $primary;
vertical-align: middle;
}
}
.private-message-glyph { display: none; }
2013-09-05 15:37:07 -04:00
}
.private-message-glyph { color: scale-color($primary, $lightness: 75%); }
.private_message #topic-title .private-message-glyph { display: inline; }
2013-09-05 15:37:07 -04:00
2014-05-06 04:14:56 -04:00
/* both blocks that appear under the standard post control buttons */
.notification-options, .pinned-options {
clear: both;
float: left;
margin-top: 0px;
2014-05-06 04:14:56 -04:00
padding-top: 1px;
}
#topic-closing-info {
margin-left: 10px;
}
.docked #topic-progress {
box-shadow: 0 0 3px rbga($primary, .5);
}
#topic-progress-wrapper {
position: fixed;
width: 0;
right: 0;
bottom: 0;
z-index: 500;
margin-right: 140px;
outline: 1px solid transparent;
}
#topic-progress-expanded {
border: 1px solid scale-color-diff();
padding: 5px;
background: $secondary;
@include box-shadow(0 0px 2px rgba($primary, .2));
position: absolute;
bottom: 34px;
width: 118px;
padding: 5px;
button.full {
width: 100%;
margin-bottom: 5px;
2014-06-12 17:24:11 -04:00
i {
display: block;
margin-top: 2px;
margin-bottom: 2px;
font-size: 18px;
}
}
.jump-form {
input[type="text"] {
float: left;
width: 45px;
height: 20px;
text-align: center;
2014-07-02 23:21:45 -04:00
font-size: 16px;
}
button.btn {
float: right !important;
width: 55px;
}
}
button.btn.jump-bottom {
margin-top: 5px;
margin-bottom: 0;
}
}
#topic-progress {
box-shadow: 0 0 3px rbga($primary, .7);
position: relative;
&.hidden {
display: none;
}
border: none;
background-color: scale-color-diff();
color: $primary;
width: 130px;
height: 34px;
2014-06-27 18:28:16 -04:00
/* as a big ol' click target, don't let text inside be selected */
@include unselectable;
2014-06-27 18:28:16 -04:00
.nums {
position: relative;
top: 9px;
width: 100%;
text-align: center;
z-index: 1;
}
h4 {
display: inline;
font-size: 18px;
line-height: 15px;
}
i.fa {
position: absolute;
right: 8px;
bottom: 9px;
z-index: 1;
}
.bg {
position: absolute;
top: 0;
bottom: 0;
width: 0;
border-right: 1px solid scale-color($success, $lightness: 50%);
background-color: scale-color($success, $lightness: 50%);
}
}
2014-06-16 14:25:33 -04:00
.topic-error {
padding: 18px;
width: 90%;
margin-left: auto;
margin-right: auto;
font-size: 24px;
line-height: 1.1em;
.topic-retry {
display: block;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
}
#topic-progress-wrapper.docked {
position: absolute;
}
.post-cloak:last-of-type {padding-bottom: 40px;}
.heatmap-high {color: scale-color($danger, $lightness: -25%) !important;}
.heatmap-med {color: $danger !important;}
.heatmap-low {color: scale-color($danger, $lightness: 25%) !important;}
2014-07-11 09:27:42 -04:00
sup sup, sub sup, sup sub, sub sub { top: 0; }