mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 03:48:23 +00:00
* composer restyle, some input normalization * style adjustments: spacing, preview background, colors * small spacing adjustments, removing default iOS input appearance, fixing merge * small width adjustment * fixing mobile link modal for small devices * FIX: more resilient allowInitiatlValueMutation implementation * Build scrollMap only on scroll. * FIX: pick date and time was not reseting state * FIX: removes auto sizing and touchstart support for now * Revert "FIX: reflects discourse icons naming scheme s/d-icon-*/d-*" This reverts commit b5ed980235722ac5104e769a139bae1192710e52. * tweak icon-library generation * FIX: regression preventing to set number of hours before closing This commit also adds a full test suite for editing topic timer. * FIX: makes allowInitialValueMutation more restrictive * FIX: invite-list expects initial value mutation * fixing tag input spacing * minor input cleanup * bump onebox version * FIX: avoids test failing at some times of the day * FIX: various issues when editing category permissions This commit also adds multiple tests
151 lines
2.6 KiB
SCSS
151 lines
2.6 KiB
SCSS
.composer-popup-container {
|
|
display: none !important; // can be removed if inline JS CSS is removed from composer-popup
|
|
}
|
|
|
|
.composer-popup {
|
|
display: none !important; // can be removed if inline JS CSS is removed from composer-popup
|
|
}
|
|
|
|
#reply-control {
|
|
z-index: 1002; //d-header is 1001
|
|
.reply-area {
|
|
padding: 0 10px;
|
|
@media screen and (max-width: 374px) {
|
|
padding: 0 5px;
|
|
}
|
|
flex-grow: 1;
|
|
}
|
|
|
|
&.open {
|
|
height: 250px;
|
|
&.edit-title {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.reply-to {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
.toggler {
|
|
margin-left: -5px;
|
|
.d-icon-chevron-down {
|
|
vertical-align: text-top;
|
|
}
|
|
}
|
|
|
|
&.draft {
|
|
.toggle-toolbar,
|
|
.toggler {
|
|
top: 8px;
|
|
}
|
|
.draft-text {
|
|
width: calc(100% - 40px);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
#reply-title {
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
.category-input {
|
|
margin-bottom: 5px;
|
|
.category-chooser {
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
|
|
.submit-panel {
|
|
margin-bottom: 5px;
|
|
align-items: baseline;
|
|
.save-or-cancel {
|
|
flex: 1 1 auto;
|
|
#draft-status,
|
|
#file-uploading {
|
|
margin-left: 15px;
|
|
}
|
|
}
|
|
.composer-bottom-right {
|
|
margin-left: auto;
|
|
flex: 1 1 auto;
|
|
}
|
|
}
|
|
|
|
.d-editor-textarea-wrapper {
|
|
width: 100%;
|
|
}
|
|
|
|
&.show-preview {
|
|
.d-editor-preview-wrapper {
|
|
position: fixed;
|
|
z-index: 1000000;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background-color: $secondary;
|
|
max-width: 100%;
|
|
margin: 0;
|
|
.d-editor-preview {
|
|
margin-bottom: 40px;
|
|
overflow: auto;
|
|
}
|
|
}
|
|
.btn.hide-preview {
|
|
position: fixed;
|
|
right: 5px;
|
|
bottom: 5px;
|
|
z-index: 1000001;
|
|
}
|
|
}
|
|
|
|
&.hide-preview {
|
|
.d-editor-preview-wrapper {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.d-editor-button-bar {
|
|
display: none;
|
|
}
|
|
|
|
.toolbar-visible .d-editor-button-bar {
|
|
display: flex;
|
|
}
|
|
|
|
.d-editor-button-bar .btn {
|
|
@media all and ( max-width: 350px) {
|
|
padding: 2px 4px;
|
|
}
|
|
&.preview {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
#mobile-uploader {
|
|
display: none;
|
|
}
|
|
|
|
.title-and-category,
|
|
.user-selector {
|
|
flex-direction: column;
|
|
margin: 0;
|
|
min-height: 75px;
|
|
}
|
|
|
|
.title-input,
|
|
.category-input,
|
|
.users-input,
|
|
.add-warning {
|
|
width: 100%;
|
|
}
|
|
|
|
.add-warning {
|
|
margin: 5px 0 5px 5px;
|
|
}
|
|
}
|
|
|