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

440 lines
8.1 KiB
SCSS
Raw Normal View History

2013-09-05 15:37:07 -04:00
// styles that apply to the reply pane that slides up to compose replies
// hack, this needs to be done cleaner
#private-message-users {
width: 400px;
float: left;
}
.add-warning {
width: 300px;
display: inline-block;
position: relative;
top: -30px;
margin-left: 20px;
2013-09-05 15:37:07 -04:00
}
.composer-popup-container {
max-width: 1500px;
margin-left: auto;
margin-right: auto;
}
.composer-popup {
box-shadow: 3px 3px 3px rgba(0,0,0, 0.34);
2014-08-12 00:11:58 -04:00
background: dark-light-diff($highlight, $secondary, 50%, -80%);
&.urgent {
2014-08-06 09:31:13 -04:00
background: dark-light-diff($danger, $secondary, 50%, -40%);
}
2013-09-05 15:37:07 -04:00
h3 {
margin-bottom: 10px;
}
2013-09-05 15:37:07 -04:00
p {
margin-bottom: 10px;
2013-09-05 15:37:07 -04:00
}
a.close {
float: right;
color: $primary;
2013-09-05 15:37:07 -04:00
opacity: 0.5;
font-size: 1.071em;
2013-09-05 15:37:07 -04:00
}
a.close:hover {
opacity: 1.0;
}
padding: 10px;
width: 600px;
position: absolute;
ul.topics {
list-style: none;
margin: 0;
padding: 0;
li {
font-weight: normal;
margin-top: 8px;
2013-09-05 15:37:07 -04:00
}
}
}
.similar-topics {
2014-05-06 11:37:09 -04:00
background-color: scale-color($tertiary, $lightness: 60%);
2013-09-05 15:37:07 -04:00
a[href] {
color: #000;
}
.posts-count {
background-color: scale-color($tertiary, $lightness: -40%);
2013-09-05 15:37:07 -04:00
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
.search-link {
.fa, .blurb {
color: scale-color($tertiary, $lightness: -40%);
}
}
2013-09-05 15:37:07 -04:00
}
.composer-popup:nth-of-type(2) {
margin-left: 10px;
}
// hide cancel upload link on IE9 (not supported)
.ie9 #cancel-file-upload { display: none; }
2013-09-05 15:37:07 -04:00
#reply-control {
.toggle-preview, #draft-status, #file-uploading {
position: absolute;
bottom: -31px;
margin-top: 0;
2013-09-05 15:37:07 -04:00
}
.toggle-preview {
right: 5px;
}
#draft-status, #file-uploading {
2013-09-05 15:37:07 -04:00
right: 51%;
color: $primary;
}
#file-uploading {
font-size: 0.857em;
2013-09-05 15:37:07 -04:00
}
2014-12-23 06:09:17 -05:00
transition: height 0.4s ease;
2013-09-05 15:37:07 -04:00
width: 100%;
z-index: 1039;
height: 0;
background-color: dark-light-diff($primary, $secondary, 90%, -60%);
bottom: 0;
font-size: 1em;
2013-09-05 15:37:07 -04:00
position: fixed;
.toggler {
2014-10-22 02:17:54 -04:00
width: 15px;
right: 1px;
2013-09-05 15:37:07 -04:00
position: absolute;
font-size: 1.071em;
color: $primary;
2014-10-22 02:17:54 -04:00
padding: 0 10px 5px 10px;
2013-09-05 15:37:07 -04:00
&:before {
font-family: "FontAwesome";
content: "\f078";
}
}
a.cancel {
padding-left: 7px;
}
.control-row {
margin: 0 0 0 5px;
}
.saving-text {
display: none;
}
.draft-text {
display: none;
}
.grippie {
display: none;
}
// The various states
&.open {
height: 300px;
.grippie {
display: block;
}
}
&.closed {
height: 0 !important;
2013-09-05 15:37:07 -04:00
}
&.draft {
height: 40px !important;
cursor: pointer;
border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
2013-09-05 15:37:07 -04:00
.draft-text {
display: block;
}
.toggler {
&:before {
font-family: "FontAwesome";
content: "\f077";
}
}
}
&.saving {
height: 40px !important;
border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
2013-09-05 15:37:07 -04:00
.saving-text {
display: block;
}
.toggler {
&:before {
font-family: "FontAwesome";
content: "\f00d";
}
}
}
.reply-area {
max-width: 1500px;
margin-left: auto;
margin-right: auto;
float: none;
.ac-wrap {
padding-left: 10px;
}
2013-09-05 15:37:07 -04:00
}
// When the post is new (new topic) the sizings are different
&.edit-title {
2013-09-05 15:37:07 -04:00
&.open {
height: 400px;
}
.contents {
2013-11-18 13:50:43 -05:00
input#reply-title {
2013-09-05 15:37:07 -04:00
padding: 7px 10px;
margin: 6px 10px 3px 0;
color: $primary;
}
input#reply-title {
width: 400px;
color: $primary;
2013-09-05 15:37:07 -04:00
}
.wmd-controls {
2014-12-23 06:09:17 -05:00
transition: top 0.3s ease;
2013-09-05 15:37:07 -04:00
top: 100px;
}
}
}
.contents {
padding: 10px;
min-width: 1280px;
.form-element {
2013-11-18 13:50:43 -05:00
display: inline-block;
2014-05-11 00:50:03 -04:00
.select2-container {
2013-09-05 15:37:07 -04:00
width: 400px;
2015-02-08 12:01:51 -05:00
margin-top: 5px;
2013-09-05 15:37:07 -04:00
a {
padding-top: 4px;
height: 28px;
}
b {
margin-top: 4px;
}
}
.category-combobox {
width: 430px;
@include medium-width { width: 285px; }
@include small-width { width: 220px; }
2014-05-11 00:50:03 -04:00
.select2-drop {
2013-09-05 15:37:07 -04:00
left: -9000px;
width: 428px;
@include medium-width { width: 283px; }
@include small-width { width: 218px; }
}
2014-05-11 00:50:03 -04:00
.select2-search input {
2013-09-05 15:37:07 -04:00
width: 378px;
@include medium-width { width: 233px; }
@include small-width { width: 168px; }
}
}
}
2013-11-18 13:50:43 -05:00
.edit-reason-input {
display: inline-block;
position: absolute;
margin-left: 10px;
top: 18px;
#edit-reason {
margin: 0;
padding: 5px;
float: left;
}
}
#reply-title {
color: $primary;
2013-09-05 15:37:07 -04:00
margin-right: 10px;
float: left;
&:disabled {
background-color: dark-light-diff($primary, $secondary, 90%, -60%);
2013-09-05 15:37:07 -04:00
}
}
.wmd-input:disabled {
background-color: dark-light-diff($primary, $secondary, 90%, -60%);
2013-09-05 15:37:07 -04:00
}
.wmd-input, .wmd-preview {
color: $primary;
}
2013-09-05 15:37:07 -04:00
.wmd-preview {
border: 1px dashed dark-light-diff($primary, $secondary, 90%, -60%);
overflow: auto;
visibility: visible;
cursor: default;
2013-09-05 15:37:07 -04:00
video {
max-width: 100%;
2014-12-08 15:39:36 -05:00
max-height: 500px;
2013-09-05 15:37:07 -04:00
height: auto;
}
audio {
max-width: 100%;
}
&.hidden {
width: 0;
visibility: hidden;
}
}
.wmd-input {
2013-09-05 15:37:07 -04:00
bottom: 35px;
}
2013-09-05 15:37:07 -04:00
.submit-panel {
width: 28%;
2013-09-05 15:37:07 -04:00
position: absolute;
display: block;
bottom: 8px;
}
.auto-close-fields .examples {
margin-top: 0;
padding-bottom: 8px;
}
2013-09-05 15:37:07 -04:00
}
.title-input, .category-input, .show-admin-options {
2013-09-05 15:37:07 -04:00
display: inline;
}
.show-admin-options {
vertical-align: top;
margin-top: 8px;
background: dark-light-diff($primary, $secondary, 90%, -60%);
&:hover {
color: $secondary;
background: $primary;
}
}
2013-09-05 15:37:07 -04:00
.title-input .popup-tip {
width: 300px;
left: -8px;
margin-top: 8px;
}
.category-input .popup-tip {
width: 240px;
left: 432px;
top: -19px;
2013-09-05 15:37:07 -04:00
}
}
.reply-to {
margin-bottom: 10px;
2015-04-04 02:37:22 -04:00
.reply-to-glyph {
color: scale-color($primary, $lightness: 50%);
}
2013-09-05 15:37:07 -04:00
}
#reply-control {
&.hide-preview {
.wmd-controls {
.wmd-input {
2013-09-05 15:37:07 -04:00
width: 100%;
}
.preview-wrapper {
display: none;
}
.textarea-wrapper {
width: 100%;
}
}
}
.wmd-controls {
left: 30px;
right: 30px;
2013-09-05 15:37:07 -04:00
position: absolute;
bottom: 48px;
top: 50px;
2013-09-05 15:37:07 -04:00
.wmd-input, .wmd-preview-scroller, .wmd-preview {
box-sizing: border-box;
2013-09-05 15:37:07 -04:00
width: 100%;
height: 100%;
min-height: 100%;
padding: 7px;
margin: 0;
background-color: $secondary;
2013-09-05 15:37:07 -04:00
word-wrap: break-word;
}
.wmd-input, .wmd-preview-scroller {
2013-09-05 15:37:07 -04:00
position: absolute;
left: 0;
top: 0;
border: 0px;
border-top: 30px solid transparent;
@include border-radius-all(0);
2013-09-05 15:37:07 -04:00
}
.wmd-preview-scroller {
font-size: 0.929em;
2014-03-27 10:18:48 -04:00
line-height: 18px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
overflow: scroll;
visibility: hidden;
.marker, .caret {
display: inline-block;
vertical-align: top;
}
}
2013-09-05 15:37:07 -04:00
.textarea-wrapper, .preview-wrapper {
position: relative;
box-sizing: border-box;
2013-09-05 15:37:07 -04:00
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
width: 50%;
}
.textarea-wrapper {
padding-right: 5px;
float: left;
.popup-tip {
margin-top: 3px;
right: 4px;
}
}
.preview-wrapper {
padding-left: 5px;
float: right;
}
}
.wmd-button-bar {
2013-09-05 15:37:07 -04:00
top: 0;
position: absolute;
border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
background-color: $secondary;
2013-09-05 15:37:07 -04:00
z-index: 100;
}
}
.control-row.reply-area {
padding-left: 20px;
padding-right: 20px;
}
@media all and (min-width: 1550px) {
#reply-control {
.wmd-controls {
width: 1450px;
left: auto;
right: auto;
}
}
}