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

337 lines
7.2 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 {
float: right;
line-height: 3em;
}
#mobile-uploader { display: none; }
.mobile-file-upload.hidden { display: none; }
#draft-status, #file-uploading, .mobile-file-upload { display: inline-block; }
transition: height .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;
.toggle-toolbar, .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";
}
}
.toggle-toolbar {
right: 30px;
&:before {
content: "\f0c9";
}
}
2013-09-05 15:37:07 -04:00
a.cancel {
padding-left: 7px;
line-height: 30px;
2013-09-05 15:37:07 -04:00
}
.control-row {
margin: 0 0 0 5px;
.reply-to {
overflow: hidden;
max-width: 80%;
white-space: nowrap;
2015-09-15 18:39:59 -04:00
i {
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
}
}
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;
2016-03-30 02:57:44 -04:00
border: 1px solid $secondary;
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
}
}
.d-editor-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
}
.d-editor-input {
color: dark-light-choose(darken($primary, 40%), blend-primary-secondary(90%));
2013-09-05 15:37:07 -04:00
bottom: 35px;
2016-03-30 02:57:44 -04:00
width: 100%;
height: 100%;
padding: 7px;
margin: 0;
background-color: $secondary;
word-wrap: break-word;
box-sizing: border-box;
border: 1px solid $secondary;
2013-09-05 15:37:07 -04:00
}
.submit-panel {
// need minimum width that fits, or this'll wrap cancel under submit/create which is super bad
width: 180px;
2013-09-05 15:37:07 -04:00
position: absolute;
display: block;
bottom: 0;
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;
}
.d-editor-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 {
.d-editor {
height: 100%;
}
.d-editor-container {
height: 100%;
}
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;
.d-editor-container {
padding: 0;
}
.d-editor-preview-wrapper {
display: none;
}
.btn.hide-preview {
position: fixed;
right: 5px;
bottom: 5px;
z-index: 1000001;
}
.d-editor-preview-wrapper.force-preview {
display: block;
position: fixed;
z-index: 1000000;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: $secondary;
.d-editor-preview {
height: 90%;
height: calc(100% - 60px);
border: 0;
overflow: auto;
}
}
.d-editor-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;
}
}
}
.d-editor-button-bar {
display: none;
2013-09-05 15:37:07 -04:00
}
.wmd-controls.toolbar-visible .d-editor-input {
padding-top: 40px;
}
.wmd-controls.toolbar-visible .d-editor-button-bar {
.btn.link, .btn.upload, .btn.rule, .btn.bullet, .btn.list, .btn.heading {
display: none;
}
display: block;
margin: 1px 4px;
position: absolute;
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
background-color: $secondary;
z-index: 100;
overflow: hidden;
width: 100%;
width: calc(100% - 10px);
-moz-box-sizing: border-box;
box-sizing: border-box;
button {
color: dark-light-choose(scale-color($primary, $lightness: 50%), scale-color($secondary, $lightness: 50%));
}
button.btn.no-text {
margin: 0 2px;
padding: 2px 5px;
position: static;
}
}
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;
}