2013-09-05 15:37:07 -04:00
|
|
|
.composer-popup-container {
|
2017-08-29 15:45:02 -04:00
|
|
|
display: none !important; // can be removed if inline JS CSS is removed from composer-popup
|
2013-09-05 15:37:07 -04:00
|
|
|
}
|
|
|
|
|
2013-09-09 16:54:33 -04:00
|
|
|
.composer-popup {
|
2017-08-29 15:45:02 -04:00
|
|
|
display: none !important; // can be removed if inline JS CSS is removed from composer-popup
|
2013-09-05 15:37:07 -04:00
|
|
|
}
|
|
|
|
|
2017-08-29 15:45:02 -04:00
|
|
|
#reply-control {
|
2018-01-16 19:05:12 -05:00
|
|
|
z-index: z("mobile-composer");
|
2021-11-30 13:50:28 -05:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.reply-area {
|
2021-11-30 13:50:28 -05:00
|
|
|
padding: 6px;
|
2021-11-30 14:02:22 -05:00
|
|
|
padding-bottom: unquote("max(env(safe-area-inset-bottom), 6px)");
|
2018-06-08 05:49:31 -04:00
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2016-02-09 01:10:24 -05:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
&.open {
|
|
|
|
height: 250px;
|
|
|
|
&.edit-title {
|
|
|
|
height: 100%;
|
2019-09-30 13:56:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 09:02:24 -04:00
|
|
|
.keyboard-visible &.open {
|
2021-12-03 17:02:22 -05:00
|
|
|
height: 100%; // Android: Reduces composer jumpiness when the keyboard toggles
|
2020-04-16 20:19:23 -04:00
|
|
|
}
|
|
|
|
|
2021-12-03 17:02:22 -05:00
|
|
|
.keyboard-visible body.ios-safari-composer-hacks &.open {
|
|
|
|
height: calc(var(--composer-vh, 1vh) * 100);
|
|
|
|
.reply-area {
|
2021-12-24 06:38:33 -05:00
|
|
|
padding-bottom: 6px;
|
2021-12-03 17:02:22 -05:00
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
|
|
|
|
2022-09-29 10:35:01 -04:00
|
|
|
// Firefox for Android hack
|
|
|
|
@supports (-moz-appearance: none) {
|
|
|
|
.keyboard-visible #reply-control.open {
|
|
|
|
position: sticky;
|
|
|
|
height: calc(100vh - var(--header-offset, 4em));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.reply-to {
|
2021-11-30 13:50:28 -05:00
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
2018-11-13 11:12:58 -05:00
|
|
|
.reply-details {
|
|
|
|
max-width: calc(100% - 75px);
|
|
|
|
}
|
2019-07-11 09:57:53 -04:00
|
|
|
|
|
|
|
// Protection for languages with long strings on very small screens. This
|
|
|
|
// has no effect on most users but we need it for some cases. If this is
|
|
|
|
// not added, "add edit reason" will overlap with the composer controls
|
|
|
|
@include breakpoint(mobile-small) {
|
|
|
|
.reply-details {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.display-edit-reason {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.composer-controls {
|
|
|
|
align-self: flex-start;
|
2021-12-24 06:38:33 -05:00
|
|
|
gap: 6px;
|
2019-07-11 09:57:53 -04:00
|
|
|
}
|
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2016-02-09 01:10:24 -05:00
|
|
|
|
2021-04-07 16:15:07 -04:00
|
|
|
.toggle-minimize {
|
2018-06-08 05:49:31 -04:00
|
|
|
.d-icon-chevron-down {
|
|
|
|
vertical-align: text-top;
|
2017-11-08 04:39:26 -05:00
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2017-11-08 04:39:26 -05:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
&.draft {
|
2020-06-04 21:24:14 -04:00
|
|
|
z-index: z("footer-nav") + 1;
|
2019-04-10 12:23:18 -04:00
|
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.toggle-toolbar,
|
2021-04-07 16:15:07 -04:00
|
|
|
.toggle-minimize {
|
2021-12-24 06:38:33 -05:00
|
|
|
top: 6px;
|
2014-10-14 17:12:48 -04:00
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
.draft-text {
|
|
|
|
width: calc(100% - 40px);
|
2019-11-06 14:00:29 -05:00
|
|
|
@include ellipsis;
|
2013-09-05 15:37:07 -04:00
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2013-09-05 15:37:07 -04:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
#reply-title {
|
|
|
|
width: calc(100% - 20px);
|
2021-12-24 06:38:33 -05:00
|
|
|
margin-bottom: 6px;
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2017-11-08 04:39:26 -05:00
|
|
|
|
2022-02-01 15:33:06 -05:00
|
|
|
.category-input,
|
|
|
|
.with-tags .category-input {
|
2021-11-30 13:50:28 -05:00
|
|
|
margin-bottom: 6px;
|
2022-02-01 15:33:06 -05:00
|
|
|
max-width: calc(50% - 3px);
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2017-08-30 11:04:17 -04:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.submit-panel {
|
2021-11-30 13:50:28 -05:00
|
|
|
margin-top: 6px;
|
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.save-or-cancel {
|
|
|
|
flex: 1 1 auto;
|
2021-12-24 06:38:33 -05:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
#draft-status,
|
|
|
|
#file-uploading {
|
2019-05-29 14:37:32 -04:00
|
|
|
margin-left: 6px;
|
2017-08-24 10:04:47 -04:00
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
.cancel {
|
2019-05-29 14:37:32 -04:00
|
|
|
font-size: 1.4em;
|
2020-08-03 22:57:10 -04:00
|
|
|
color: var(--primary-low-mid);
|
2018-06-08 05:49:31 -04:00
|
|
|
margin-left: 0.6em;
|
2019-05-29 14:37:32 -04:00
|
|
|
padding: 3px 6px;
|
2013-09-05 15:37:07 -04:00
|
|
|
}
|
|
|
|
}
|
2019-05-29 14:37:32 -04:00
|
|
|
.mobile-file-upload:not(.hidden),
|
|
|
|
.mobile-preview {
|
|
|
|
// Alignment fix, remove if converted to buttons
|
|
|
|
display: inline-flex;
|
2014-06-05 12:09:08 -04:00
|
|
|
}
|
2019-05-28 14:19:02 -04:00
|
|
|
.mobile-file-upload {
|
|
|
|
&.hidden + .mobile-preview {
|
|
|
|
// Hide preview button while file is uploading to make room for upload progress
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-preview {
|
|
|
|
margin-left: 0.25em;
|
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2017-11-08 04:39:26 -05:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
&.show-preview {
|
2020-07-22 14:36:05 -04:00
|
|
|
.submit-panel {
|
|
|
|
padding-top: 10px;
|
2020-07-22 12:17:51 -04:00
|
|
|
z-index: z("fullscreen") + 1;
|
2020-08-03 22:57:10 -04:00
|
|
|
background-color: var(--secondary);
|
2020-07-22 14:36:05 -04:00
|
|
|
.cancel,
|
|
|
|
.mobile-file-upload,
|
|
|
|
.mobile-preview {
|
2020-07-22 12:17:51 -04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
.d-editor-preview-wrapper {
|
|
|
|
position: fixed;
|
2019-06-04 11:08:21 -04:00
|
|
|
z-index: z("fullscreen");
|
2018-06-08 05:49:31 -04:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
2020-08-03 22:57:10 -04:00
|
|
|
background-color: var(--secondary);
|
|
|
|
border-bottom: 40px solid var(--secondary);
|
2018-06-08 05:49:31 -04:00
|
|
|
max-width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 10px;
|
|
|
|
overflow: auto;
|
|
|
|
.d-editor-preview {
|
|
|
|
margin-bottom: 40px;
|
2017-06-05 12:25:20 -04:00
|
|
|
}
|
2013-09-05 15:37:07 -04:00
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2015-11-06 15:51:21 -05:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
&.hide-preview {
|
|
|
|
.d-editor-preview-wrapper {
|
2015-11-03 16:25:37 -05:00
|
|
|
display: none;
|
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2016-02-09 01:10:24 -05:00
|
|
|
|
2022-09-13 14:20:33 -04:00
|
|
|
.wmd-controls:not(.toolbar-visible) {
|
|
|
|
.d-editor-button-bar {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2016-02-09 01:10:24 -05:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.d-editor-button-bar .btn {
|
|
|
|
&.preview {
|
2017-11-08 04:39:26 -05:00
|
|
|
margin: 0;
|
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2016-02-09 01:10:24 -05:00
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.title-and-category,
|
|
|
|
.user-selector {
|
|
|
|
margin: 0;
|
|
|
|
.users-input {
|
2021-12-24 06:38:33 -05:00
|
|
|
margin-bottom: 6px;
|
2016-02-09 01:10:24 -05:00
|
|
|
}
|
2017-11-08 04:39:26 -05:00
|
|
|
}
|
2017-08-29 15:45:02 -04:00
|
|
|
|
2018-07-23 14:25:21 -04:00
|
|
|
.with-tags {
|
2021-10-15 10:25:11 -04:00
|
|
|
.mini-tag-chooser,
|
|
|
|
.category-chooser {
|
2018-08-16 01:17:15 -04:00
|
|
|
z-index: z("base");
|
2021-12-24 06:38:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.mini-tag-chooser {
|
|
|
|
margin: 0 0 6px 6px;
|
2022-02-01 15:33:06 -05:00
|
|
|
max-width: calc(50% - 3px);
|
2018-07-23 14:25:21 -04:00
|
|
|
}
|
2020-02-17 13:55:04 -05:00
|
|
|
|
|
|
|
.selected-name {
|
|
|
|
.name {
|
2022-10-12 09:31:59 -04:00
|
|
|
font-size: var(--font-down-1);
|
2020-02-17 13:55:04 -05:00
|
|
|
.badge-wrapper {
|
2022-10-12 09:31:59 -04:00
|
|
|
font-size: var(--font-0);
|
2020-02-17 13:55:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-09 11:01:56 -04:00
|
|
|
|
2022-06-20 14:02:05 -04:00
|
|
|
.formatted-selection {
|
2021-09-09 11:01:56 -04:00
|
|
|
font-size: var(--font-down-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.without-tags {
|
|
|
|
.category-input {
|
2021-12-24 06:38:33 -05:00
|
|
|
margin-left: 6px;
|
2021-09-09 11:01:56 -04:00
|
|
|
}
|
2018-07-23 14:25:21 -04:00
|
|
|
}
|
|
|
|
|
2020-08-26 19:38:20 -04:00
|
|
|
.user-selector {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.users-input,
|
|
|
|
.add-warning {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-12-24 06:38:33 -05:00
|
|
|
.users-input .select-kit.multi-select {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-06-08 05:49:31 -04:00
|
|
|
.add-warning {
|
2021-12-24 06:38:33 -05:00
|
|
|
margin-bottom: 6px;
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|
2018-11-26 16:49:57 -05:00
|
|
|
|
|
|
|
.whisper {
|
2021-12-24 06:38:33 -05:00
|
|
|
margin-right: 6px;
|
2018-11-26 16:49:57 -05:00
|
|
|
}
|
2018-06-08 05:49:31 -04:00
|
|
|
}
|