2013-09-06 03:37:07 +08:00
|
|
|
// styles that apply to the reply pane that slides up to compose replies
|
|
|
|
|
|
|
|
// hack, this needs to be done cleaner
|
2014-01-22 15:24:29 +08:00
|
|
|
#private-message-users {
|
|
|
|
width: 400px;
|
2014-09-08 23:11:56 +08:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.add-warning {
|
|
|
|
width: 300px;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
top: -30px;
|
|
|
|
margin-left: 20px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.composer-popup-container {
|
|
|
|
max-width: 1500px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.composer-popup {
|
2015-12-29 05:51:07 +08:00
|
|
|
position: absolute;
|
|
|
|
width: calc(50% - 55px);
|
|
|
|
max-width: 724px;
|
|
|
|
top: 16px;
|
|
|
|
bottom: 16px;
|
|
|
|
left: 50%;
|
|
|
|
// The composer goes off-center at 1550px
|
|
|
|
@media (min-width: 1550px) {
|
|
|
|
left: calc(50% - 15px);
|
|
|
|
}
|
|
|
|
overflow-y: auto;
|
|
|
|
z-index: 110;
|
2017-08-19 03:40:34 +08:00
|
|
|
padding: 10px 10px 35px 10px;
|
2013-09-06 03:37:07 +08:00
|
|
|
|
2014-10-11 06:02:46 +08:00
|
|
|
box-shadow: 3px 3px 3px rgba(0,0,0, 0.34);
|
2017-06-12 10:20:14 +08:00
|
|
|
background: $highlight-medium;
|
2014-03-07 07:35:47 +08:00
|
|
|
|
|
|
|
&.urgent {
|
2017-06-12 10:20:14 +08:00
|
|
|
background: $danger-low;
|
2014-03-07 07:35:47 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
|
2015-12-04 11:49:55 +08:00
|
|
|
&.education-message {
|
2017-06-12 10:20:14 +08:00
|
|
|
background-color: $tertiary-low;
|
2015-11-25 19:01:17 +08:00
|
|
|
}
|
|
|
|
|
2013-12-20 02:45:55 +08:00
|
|
|
h3 {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
p {
|
2013-12-20 02:45:55 +08:00
|
|
|
margin-bottom: 10px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
a.close {
|
2017-08-19 03:40:34 +08:00
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
bottom: 10px;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2013-09-06 03:37:07 +08:00
|
|
|
opacity: 0.5;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.071em;
|
2017-08-19 03:40:34 +08:00
|
|
|
&:before {
|
|
|
|
content: 'esc';
|
|
|
|
font-size: 0.85em;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
a.close:hover {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ul.topics {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
li {
|
|
|
|
font-weight: normal;
|
2015-06-26 16:53:19 +08:00
|
|
|
margin-top: 8px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-07 04:58:35 +08:00
|
|
|
.custom-body {
|
2017-06-12 10:20:14 +08:00
|
|
|
background-color: $tertiary-low;
|
2016-06-07 04:58:35 +08:00
|
|
|
p {
|
|
|
|
max-width: 98%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-10 04:54:33 +08:00
|
|
|
.similar-topics {
|
2017-06-12 10:20:14 +08:00
|
|
|
background-color: $tertiary-low;
|
2013-09-06 03:37:07 +08:00
|
|
|
|
|
|
|
a[href] {
|
2017-06-12 10:20:14 +08:00
|
|
|
color: $primary-medium;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.posts-count {
|
2015-08-19 05:50:36 +08:00
|
|
|
background-color: dark-light-choose(scale-color($tertiary, $lightness: -40%), scale-color($tertiary, $lightness: 40%));
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2015-06-25 03:08:22 +08:00
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.search-link {
|
|
|
|
.fa, .blurb {
|
2016-01-05 07:25:30 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 45%), scale-color($secondary, $lightness: 55%));
|
2015-06-25 03:08:22 +08:00
|
|
|
}
|
|
|
|
}
|
2015-09-29 17:14:37 +08:00
|
|
|
.badge-wrapper {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.composer-popup:nth-of-type(2) {
|
|
|
|
margin-left: 10px;
|
2015-12-29 05:51:07 +08:00
|
|
|
width: calc(50% - 65px);
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
2015-09-23 22:05:41 +08:00
|
|
|
// only disabled when the device is touch-only
|
|
|
|
.touch.mobile-device #reply-control.open .grippie {
|
2015-09-15 11:09:12 +08:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
#reply-control {
|
|
|
|
.toggle-preview, #draft-status, #file-uploading {
|
|
|
|
position: absolute;
|
|
|
|
bottom: -31px;
|
2014-03-06 14:14:51 +08:00
|
|
|
margin-top: 0;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.toggle-preview {
|
|
|
|
right: 5px;
|
|
|
|
}
|
2015-03-10 00:46:36 +08:00
|
|
|
#draft-status, #file-uploading {
|
2013-09-06 03:37:07 +08:00
|
|
|
right: 51%;
|
2015-03-10 00:46:36 +08:00
|
|
|
}
|
|
|
|
#file-uploading {
|
|
|
|
font-size: 0.857em;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2014-12-23 19:09:17 +08:00
|
|
|
transition: height 0.4s ease;
|
2013-09-06 03:37:07 +08:00
|
|
|
width: 100%;
|
2015-09-02 05:33:37 +08:00
|
|
|
z-index: 999;
|
2014-03-06 14:14:51 +08:00
|
|
|
height: 0;
|
2017-06-12 10:20:14 +08:00
|
|
|
background-color: $primary-low;
|
2014-03-06 14:14:51 +08:00
|
|
|
bottom: 0;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1em;
|
2013-09-06 03:37:07 +08:00
|
|
|
position: fixed;
|
|
|
|
.toggler {
|
2014-10-22 14:17:54 +08:00
|
|
|
right: 1px;
|
2013-09-06 03:37:07 +08:00
|
|
|
position: absolute;
|
2017-07-25 05:31:14 +08:00
|
|
|
i { font-size: 1.1em; }
|
2016-06-07 15:35:13 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
2014-10-22 14:17:54 +08:00
|
|
|
padding: 0 10px 5px 10px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
a.cancel {
|
|
|
|
padding-left: 7px;
|
|
|
|
}
|
|
|
|
.control-row {
|
2017-08-24 22:04:47 +08:00
|
|
|
margin: 0 5px 0 5px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.saving-text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.draft-text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.grippie {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
// The various states
|
|
|
|
&.open {
|
|
|
|
height: 300px;
|
|
|
|
.grippie {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.closed {
|
2014-03-06 14:14:51 +08:00
|
|
|
height: 0 !important;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
&.draft {
|
|
|
|
height: 40px !important;
|
|
|
|
cursor: pointer;
|
2017-06-12 10:20:14 +08:00
|
|
|
border-top: 1px solid $primary-low;
|
2013-09-06 03:37:07 +08:00
|
|
|
.draft-text {
|
|
|
|
display: block;
|
2016-12-08 22:41:58 +08:00
|
|
|
|
|
|
|
i {
|
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&.saving {
|
|
|
|
height: 40px !important;
|
2017-06-12 10:20:14 +08:00
|
|
|
border-top: 1px solid $primary-low;
|
2013-09-06 03:37:07 +08:00
|
|
|
.saving-text {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.reply-area {
|
|
|
|
max-width: 1500px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
float: none;
|
2014-05-19 01:15:11 +08:00
|
|
|
.ac-wrap {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// When the post is new (new topic) the sizings are different
|
|
|
|
&.edit-title {
|
2013-10-20 06:18:25 +08:00
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
&.open {
|
|
|
|
height: 400px;
|
|
|
|
}
|
|
|
|
.contents {
|
2013-11-19 02:50:43 +08:00
|
|
|
input#reply-title {
|
2013-09-06 03:37:07 +08:00
|
|
|
padding: 7px 10px;
|
2017-08-24 22:04:47 +08:00
|
|
|
margin-bottom: 0;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2014-03-06 14:14:51 +08:00
|
|
|
width: 400px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.wmd-controls {
|
2014-12-23 19:09:17 +08:00
|
|
|
transition: top 0.3s ease;
|
2013-09-06 03:37:07 +08:00
|
|
|
top: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.contents {
|
2015-09-26 03:56:49 +08:00
|
|
|
padding-left: 10px;
|
|
|
|
padding-top: 5px;
|
2013-09-06 03:37:07 +08:00
|
|
|
min-width: 1280px;
|
|
|
|
.form-element {
|
2015-08-24 18:16:45 +08:00
|
|
|
position: relative;
|
2017-08-24 22:04:47 +08:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
|
|
.category-input {
|
2013-09-06 03:37:07 +08:00
|
|
|
width: 430px;
|
|
|
|
@include medium-width { width: 285px; }
|
|
|
|
@include small-width { width: 220px; }
|
|
|
|
}
|
|
|
|
}
|
2013-11-19 02:50:43 +08:00
|
|
|
.edit-reason-input {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
margin-left: 10px;
|
|
|
|
top: 18px;
|
|
|
|
#edit-reason {
|
2016-06-27 14:48:45 +08:00
|
|
|
margin: -7px 0 0;
|
2013-11-19 02:50:43 +08:00
|
|
|
padding: 5px;
|
|
|
|
float: left;
|
2016-06-27 14:48:45 +08:00
|
|
|
width: 300px;
|
2013-11-19 02:50:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#reply-title {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2017-08-24 22:04:47 +08:00
|
|
|
margin-right: 5px;
|
2013-09-06 03:37:07 +08:00
|
|
|
float: left;
|
|
|
|
&:disabled {
|
2017-06-12 10:20:14 +08:00
|
|
|
background-color: $primary-low;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
2016-12-05 20:31:43 +08:00
|
|
|
#topic-featured-link {
|
|
|
|
padding: 7px 10px;
|
|
|
|
margin: 6px 10px 3px 0;
|
|
|
|
width: 400px;
|
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-input:disabled {
|
2017-06-12 10:20:14 +08:00
|
|
|
background-color: $primary-low;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-input, .d-editor-preview {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2014-06-30 17:06:13 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-preview {
|
2017-06-12 10:20:14 +08:00
|
|
|
border: 1px dashed $primary-low;
|
2014-06-30 17:06:13 +08:00
|
|
|
overflow: auto;
|
|
|
|
visibility: visible;
|
2014-10-11 07:02:14 +08:00
|
|
|
cursor: default;
|
2013-09-06 03:37:07 +08:00
|
|
|
video {
|
|
|
|
max-width: 100%;
|
2014-12-09 04:39:36 +08:00
|
|
|
max-height: 500px;
|
2013-09-06 03:37:07 +08:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
audio {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
&.hidden {
|
|
|
|
width: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-input {
|
2013-09-06 03:37:07 +08:00
|
|
|
bottom: 35px;
|
|
|
|
}
|
2014-06-30 17:06:13 +08:00
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
.submit-panel {
|
2015-06-22 19:56:45 +08:00
|
|
|
width: 28%;
|
2013-09-06 03:37:07 +08:00
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
bottom: 8px;
|
|
|
|
}
|
2017-03-22 11:12:02 +08:00
|
|
|
.auto-update-input .examples {
|
2013-11-27 08:06:20 +08:00
|
|
|
margin-top: 0;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2013-11-27 08:06:20 +08:00
|
|
|
.title-input, .category-input, .show-admin-options {
|
2013-09-06 03:37:07 +08:00
|
|
|
display: inline;
|
|
|
|
}
|
2014-01-14 08:00:23 +08:00
|
|
|
.show-admin-options {
|
2014-03-06 14:14:51 +08:00
|
|
|
vertical-align: top;
|
2014-01-14 08:00:23 +08:00
|
|
|
margin-top: 8px;
|
2017-06-12 10:20:14 +08:00
|
|
|
background: $primary-low;
|
2014-03-06 14:14:51 +08:00
|
|
|
&:hover {
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $secondary;
|
|
|
|
background: $primary;
|
2014-02-24 09:47:44 +08:00
|
|
|
}
|
2014-01-14 08:00:23 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
.title-input .popup-tip {
|
|
|
|
width: 300px;
|
2015-09-14 00:30:39 +08:00
|
|
|
margin-top: 8px;
|
|
|
|
left: 150px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
.category-input .popup-tip {
|
|
|
|
width: 240px;
|
|
|
|
left: 432px;
|
2013-10-09 02:40:31 +08:00
|
|
|
top: -19px;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.reply-to {
|
|
|
|
margin-bottom: 10px;
|
2017-01-18 04:14:58 +08:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
color: $tertiary;
|
|
|
|
|
|
|
|
@media (min-width: 1101px) {
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
|
|
max-width: 500px;
|
|
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
max-width: 300px;
|
|
|
|
}
|
2015-04-04 14:37:22 +08:00
|
|
|
|
2015-08-08 03:43:29 +08:00
|
|
|
i {
|
2015-08-20 17:42:12 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
2015-04-04 14:37:22 +08:00
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#reply-control {
|
2015-11-04 05:25:37 +08:00
|
|
|
.wmd-controls.hide-preview {
|
|
|
|
.d-editor-input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-12-08 01:51:58 +08:00
|
|
|
.d-editor-button-bar {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-preview-wrapper {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.d-editor-textarea-wrapper {
|
|
|
|
width: 100%;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
.wmd-controls {
|
2014-04-21 23:54:57 +08:00
|
|
|
left: 30px;
|
|
|
|
right: 30px;
|
2013-09-06 03:37:07 +08:00
|
|
|
position: absolute;
|
|
|
|
bottom: 48px;
|
2014-04-21 23:54:57 +08:00
|
|
|
top: 50px;
|
2013-09-06 03:37:07 +08:00
|
|
|
|
|
|
|
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-input, .d-editor-preview {
|
2015-09-17 02:13:44 +08:00
|
|
|
-moz-box-sizing: border-box;
|
2014-10-11 19:30:34 +08:00
|
|
|
box-sizing: border-box;
|
2013-09-06 03:37:07 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2015-09-17 02:13:44 +08:00
|
|
|
min-height: auto;
|
2013-09-06 03:37:07 +08:00
|
|
|
padding: 7px;
|
|
|
|
margin: 0;
|
2014-05-06 13:50:51 +08:00
|
|
|
background-color: $secondary;
|
2013-09-06 03:37:07 +08:00
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-input, .d-editor-preview-header {
|
2013-09-06 03:37:07 +08:00
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2014-06-30 18:34:40 +08:00
|
|
|
border: 0px;
|
2014-02-24 09:47:44 +08:00
|
|
|
border-top: 30px solid transparent;
|
2014-06-30 18:34:40 +08:00
|
|
|
@include border-radius-all(0);
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-preview-header {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.929em;
|
2014-03-27 22:18:48 +08:00
|
|
|
line-height: 18px;
|
|
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
overflow: scroll;
|
|
|
|
.marker, .caret {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor, .d-editor-container, .d-editor-textarea-wrapper, .d-editor-preview-wrapper {
|
2013-09-06 03:37:07 +08:00
|
|
|
position: relative;
|
2015-09-17 02:13:44 +08:00
|
|
|
-moz-box-sizing: border-box;
|
2014-10-11 19:30:34 +08:00
|
|
|
box-sizing: border-box;
|
2013-09-06 03:37:07 +08:00
|
|
|
height: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-textarea-wrapper {
|
|
|
|
width: 50%;
|
2013-09-06 03:37:07 +08:00
|
|
|
padding-right: 5px;
|
|
|
|
float: left;
|
|
|
|
.popup-tip {
|
|
|
|
margin-top: 3px;
|
|
|
|
right: 4px;
|
|
|
|
}
|
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-preview-wrapper {
|
|
|
|
width: 50%;
|
2013-09-06 03:37:07 +08:00
|
|
|
padding-left: 5px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
2015-11-04 05:25:37 +08:00
|
|
|
.d-editor-button-bar {
|
2013-09-06 03:37:07 +08:00
|
|
|
top: 0;
|
|
|
|
position: absolute;
|
2015-09-06 13:22:04 +08:00
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
2014-05-06 13:50:51 +08:00
|
|
|
background-color: $secondary;
|
2013-09-06 03:37:07 +08:00
|
|
|
z-index: 100;
|
2015-11-08 07:38:44 +08:00
|
|
|
overflow: hidden;
|
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2015-11-07 08:10:22 +08:00
|
|
|
|
|
|
|
button {
|
|
|
|
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
|
|
|
|
}
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-05 20:31:43 +08:00
|
|
|
#reply-control.topic-featured-link-only.open {
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
2013-09-06 03:37:07 +08:00
|
|
|
.control-row.reply-area {
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
|
|
|
}
|
2014-04-21 23:54:57 +08:00
|
|
|
|
2014-07-25 00:21:22 +08:00
|
|
|
@media all and (min-width: 1550px) {
|
2014-04-21 23:54:57 +08:00
|
|
|
#reply-control {
|
|
|
|
.wmd-controls {
|
|
|
|
width: 1450px;
|
|
|
|
left: auto;
|
|
|
|
right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|