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

274 lines
5.7 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 input.span8 {
width: 47%;
}
.composer-popup-container {
display: none !important; // can be removed if inline JS CSS is removed from composer-popup
2013-09-05 15:37:07 -04:00
}
.composer-popup {
display: none !important; // can be removed if inline JS CSS is removed from composer-popup
2013-09-05 15:37:07 -04:00
}
2015-08-20 16:59:32 -04:00
input {
background: $secondary;
color: $primary;
border-color: blend-primary-secondary(15%);
2015-08-20 16:59:32 -04:00
}
2013-09-05 15:37:07 -04:00
#reply-control {
2014-10-11 08:29:50 -04:00
// used for upload link
.composer-bottom-right {
2013-09-05 15:37:07 -04:00
position: absolute;
2014-10-11 08:29:50 -04:00
bottom: -32px;
2014-10-11 08:08:25 -04:00
right: -5px;
2013-09-05 15:37:07 -04:00
}
.toggle-preview { display:none; }
.preview-wrapper { display:none; }
#mobile-uploader { display: none; }
#draft-status, #file-uploading, .mobile-file-upload {
float: right;
margin-right: 8px;
}
2013-09-05 15:37:07 -04:00
#file-uploading {
left: 51%;
font-size: 0.857em;
color: scale-color($secondary, $lightness: 50%);
2013-09-05 15:37:07 -04:00
}
#draft-status {
color: dark-light-choose(scale-color($primary, $lightness: 75%), scale-color($secondary, $lightness: 25%));
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 {
width: 15px;
right: 1px;
2013-09-05 15:37:07 -04:00
position: absolute;
font-size: 1.071em;
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
padding: 0 10px 5px 10px;
2013-09-05 15:37:07 -04:00
&:before {
font-family: "FontAwesome";
content: "\f078";
}
}
a.cancel {
padding-left: 7px;
float: left;
2013-09-05 15:37:07 -04:00
margin-top: 6px;
}
.control-row {
margin: 0 0 0 5px;
.reply-to {
overflow: hidden;
max-width: 92%;
white-space: nowrap;
}
2013-09-05 15:37:07 -04:00
}
.saving-text {
display: none;
}
.draft-text {
display: none;
}
.grippie {
display: none;
}
// The various states
&.open {
max-height: 100%; // ensure no overflow e.g. on small Android
height: 270px;
2013-09-05 15:37:07 -04:00
}
&.closed {
height: 0 !important;
2013-09-05 15:37:07 -04:00
}
&.draft {
2014-10-22 02:37:34 -04:00
height: 35px !important;
2013-09-05 15:37:07 -04:00
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;
position: absolute;
margin-right: 40px;
}
.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";
}
}
}
2014-03-27 18:44:46 -04:00
// if this is a new topic, make room for the category field in the editor on
// a small screen mobile device
2013-09-05 15:37:07 -04:00
&.edit-title {
&.open {
max-height: 100%; // ensure no overflow e.g. on small Android
height: 250px;
2013-09-05 15:37:07 -04:00
}
.contents {
input#reply-title {
2014-10-11 08:29:50 -04:00
padding: 5px;
margin-top: 6px;
width: 99%;
box-sizing: border-box;
2013-09-05 15:37:07 -04:00
}
.wmd-controls {
2014-12-23 06:09:17 -05:00
transition: top 0.3s ease;
2014-10-11 08:29:50 -04:00
top: 110px;
2013-09-05 15:37:07 -04:00
}
}
}
.contents {
2014-10-11 08:08:25 -04:00
padding: 8px 5px 0 5px;
2013-09-05 15:37:07 -04:00
.form-element {
2014-05-11 00:50:03 -04:00
.select2-container {
width: 99%;
2013-09-05 15:37:07 -04:00
margin-top: 6px;
a {
padding-top: 4px;
height: 28px;
}
b {
margin-top: 4px;
}
}
}
.edit-reason-input, .display-edit-reason {
display: none;
}
2014-06-03 15:19:18 -04:00
.edit-reason-input {
display: inline-block;
margin-left: 2px;
#edit-reason {
margin: 0;
padding: 2px;
}
}
2013-09-05 15:37:07 -04:00
#reply-title {
margin-right: 10px;
&:disabled {
background-color: dark-light-choose(scale-color($primary, $lightness: 75%), scale-color($secondary, $lightness: 25%));
2013-09-05 15:37:07 -04:00
}
}
.wmd-input:disabled {
background-color: dark-light-choose(scale-color($primary, $lightness: 75%), scale-color($secondary, $lightness: 25%));
2013-09-05 15:37:07 -04:00
}
.wmd-input {
color: dark-light-choose(darken($primary, 40%), blend-primary-secondary(90%));
}
.wmd-input {
2013-09-05 15:37:07 -04:00
bottom: 35px;
}
.submit-panel {
position: absolute;
display: block;
2014-03-30 01:48:59 -04:00
bottom: 2px;
2013-09-05 15:37:07 -04:00
}
}
.category-input {
// hack, select2 is using inline styles
.select2-container {
width: 99% !important;
}
2013-09-05 15:37:07 -04:00
}
.popup-tip .close {
padding: 0 2px 2px 8px; // so my fingers can touch the little x
}
2013-09-05 15:37:07 -04:00
.title-input .popup-tip {
width: 240px;
right: 5px;
2013-09-05 15:37:07 -04:00
}
.category-input .popup-tip {
width: 240px;
right: 5px;
}
.textarea-wrapper .popup-tip {
top: 28px;
2013-09-05 15:37:07 -04:00
}
button.btn.no-text {
margin: 7px 0 0 5px;
position: absolute;
}
2013-09-05 15:37:07 -04:00
}
#reply-control.edit-title.private-message {
.wmd-controls {
2014-12-23 06:09:17 -05:00
transition: top 0.3s ease;
2014-03-27 18:47:55 -04:00
top: 120px;
2013-09-05 15:37:07 -04:00
}
}
#reply-control {
2013-09-05 15:37:07 -04:00
.wmd-controls {
2013-09-10 23:56:55 -04:00
left: 10px;
right: 10px;
2013-09-05 15:37:07 -04:00
position: absolute;
2014-03-30 01:48:59 -04:00
top: 40px;
2014-10-11 08:29:50 -04:00
bottom: 50px;
2013-09-05 15:37:07 -04:00
display: block;
.wmd-input {
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;
2014-10-11 08:08:25 -04:00
box-sizing: border-box;
2013-09-05 15:37:07 -04:00
}
.wmd-input {
2013-09-05 15:37:07 -04:00
position: absolute;
left: 0;
top: 0;
2014-03-27 10:18:48 -04:00
}
.textarea-wrapper {
2013-09-05 15:37:07 -04:00
position: relative;
box-sizing: border-box;
2013-09-05 15:37:07 -04:00
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
.popup-tip {
margin-top: 3px;
right: 4px;
}
}
}
.wmd-button-bar {
display: none;
2013-09-05 15:37:07 -04:00
}
}
// make sure the category selector *NEVER* gets focus by default on mobile anywhere
.select2-hidden,
.select2-search,
.select2-focusser {
display:none !important;
}