2016-10-27 07:40:53 +02:00
|
|
|
#compose_buttons {
|
2016-12-02 01:36:40 +01:00
|
|
|
text-align: right;
|
2021-04-15 02:59:34 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2018-11-01 00:58:43 +01:00
|
|
|
|
2019-08-24 12:31:44 +02:00
|
|
|
.new_message_button {
|
2021-04-15 02:59:34 +02:00
|
|
|
margin-left: 4px;
|
2019-08-24 12:31:44 +02:00
|
|
|
|
2019-08-24 12:37:25 +02:00
|
|
|
.button.small {
|
|
|
|
font-size: 1em;
|
|
|
|
padding: 3px 10px;
|
2021-02-09 06:36:15 +01:00
|
|
|
vertical-align: middle;
|
2019-08-24 12:37:25 +02:00
|
|
|
}
|
|
|
|
|
2019-08-24 12:55:15 +02:00
|
|
|
.compose_mobile_button {
|
|
|
|
span {
|
|
|
|
font-size: 1.2em !important;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 1em;
|
|
|
|
}
|
2019-08-24 12:34:35 +02:00
|
|
|
}
|
2021-04-15 02:59:34 +02:00
|
|
|
}
|
2019-08-24 12:55:15 +02:00
|
|
|
|
2021-04-15 02:59:34 +02:00
|
|
|
.reply_button_container {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
|
|
|
|
.compose_reply_button {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2019-08-24 12:55:15 +02:00
|
|
|
}
|
2018-11-01 00:58:43 +01:00
|
|
|
}
|
2021-04-15 02:59:34 +02:00
|
|
|
|
|
|
|
.mobile_button_container {
|
|
|
|
@media (width >= $sm_min) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.stream_button_container,
|
|
|
|
.private_button_container {
|
|
|
|
@media (width < $sm_min) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
2021-04-30 20:11:03 +02:00
|
|
|
/* Main geometry for this element is in zulip.css */
|
2021-06-10 16:52:29 +02:00
|
|
|
#compose-content {
|
2019-08-24 12:26:37 +02:00
|
|
|
border-top: 1px solid hsla(0, 0%, 0%, 0.07);
|
|
|
|
transition: background-color 200ms linear;
|
2021-11-05 03:33:16 +01:00
|
|
|
padding: 4px 4px 8px;
|
2020-08-06 02:34:58 +02:00
|
|
|
border-left: 1px solid hsl(0, 0%, 93%);
|
|
|
|
border-right: 1px solid hsl(0, 0%, 93%);
|
2021-05-17 13:15:11 +02:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
2021-09-23 22:17:39 +02:00
|
|
|
box-sizing: border-box;
|
2019-08-24 12:26:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_comp {
|
|
|
|
display: none;
|
2022-02-01 14:29:57 +01:00
|
|
|
padding: 5px 10px 0 5px;
|
2019-08-24 12:26:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.autocomplete_secondary {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active .autocomplete_secondary {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2022-04-23 08:59:40 +02:00
|
|
|
.narrow_to_compose_recipient_current_view_help {
|
|
|
|
margin: 0;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2019-08-24 13:13:52 +02:00
|
|
|
.compose_table {
|
2021-05-17 13:15:11 +02:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
|
2020-06-13 17:32:03 +02:00
|
|
|
.stream-selection-header-colorblock {
|
2019-08-24 13:13:52 +02:00
|
|
|
&.message_header_private_message {
|
2020-08-06 02:42:07 +02:00
|
|
|
border-radius: 3px 0 0 3px;
|
|
|
|
border-bottom: 0;
|
2019-08-24 13:13:52 +02:00
|
|
|
background-color: hsl(0, 0%, 27%);
|
|
|
|
}
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2019-08-24 13:13:52 +02:00
|
|
|
.right_part {
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0;
|
2019-08-24 13:13:52 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-12-14 17:50:35 +01:00
|
|
|
flex: 1;
|
2019-08-24 13:13:52 +02:00
|
|
|
|
|
|
|
.fa-angle-right {
|
|
|
|
font-size: 0.9em;
|
|
|
|
-webkit-text-stroke: 0.05em;
|
|
|
|
position: relative;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0 5px;
|
2019-08-24 13:13:52 +02:00
|
|
|
}
|
2021-08-16 17:10:43 +02:00
|
|
|
|
|
|
|
a.narrow_to_compose_recipients {
|
|
|
|
background: transparent;
|
|
|
|
font-size: 18px;
|
|
|
|
padding: 1px;
|
|
|
|
line-height: 20px;
|
|
|
|
opacity: 0.7;
|
|
|
|
border: 0;
|
|
|
|
margin-left: 3px;
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2019-08-24 13:13:52 +02:00
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2019-08-24 13:13:52 +02:00
|
|
|
.pm_recipient {
|
|
|
|
margin-left: 5px;
|
|
|
|
display: flex;
|
2022-09-26 21:01:43 +02:00
|
|
|
align-items: center;
|
2019-08-24 13:13:52 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2019-08-24 13:13:52 +02:00
|
|
|
#private-message .to_text {
|
|
|
|
vertical-align: middle;
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2019-08-24 13:13:52 +02:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2021-11-20 04:20:21 +01:00
|
|
|
#compose-lock-icon,
|
|
|
|
#compose-globe-icon {
|
2019-08-24 13:13:52 +02:00
|
|
|
position: relative;
|
2022-03-25 08:24:53 +01:00
|
|
|
left: 6px;
|
2022-03-25 08:25:33 +01:00
|
|
|
top: 0.5px;
|
2020-08-06 02:42:07 +02:00
|
|
|
width: 0;
|
2019-08-24 13:13:52 +02:00
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2021-11-20 04:20:21 +01:00
|
|
|
#compose-globe-icon {
|
2022-03-25 08:24:53 +01:00
|
|
|
left: 4.5px;
|
2022-03-01 11:25:40 +01:00
|
|
|
|
|
|
|
.zulip-icon-globe {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
2021-11-20 04:20:21 +01:00
|
|
|
}
|
|
|
|
|
2019-08-24 13:13:52 +02:00
|
|
|
.message_header {
|
|
|
|
background: none;
|
|
|
|
background-color: hsl(0, 0%, 92%);
|
|
|
|
border: none;
|
2020-08-06 02:42:07 +02:00
|
|
|
border-radius: 0;
|
2019-08-24 13:13:52 +02:00
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2019-08-24 13:13:52 +02:00
|
|
|
.messagebox {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#send_message_form {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
2021-05-17 13:15:11 +02:00
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
.messagebox-wrapper {
|
|
|
|
flex: 1;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2019-08-24 13:37:32 +02:00
|
|
|
.messagebox {
|
|
|
|
/* normally 5px 14px; pull in the right and bottom a bit */
|
|
|
|
cursor: default;
|
2020-08-06 02:42:07 +02:00
|
|
|
padding: 0;
|
2019-08-24 13:37:32 +02:00
|
|
|
background: none;
|
|
|
|
box-shadow: none;
|
|
|
|
border: none;
|
2021-05-17 13:15:11 +02:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
2019-08-24 13:37:32 +02:00
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2019-08-24 13:37:32 +02:00
|
|
|
.message_content {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-right: 0;
|
2019-08-24 13:37:32 +02:00
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#below-compose-content {
|
2021-11-12 06:29:37 +01:00
|
|
|
display: flex;
|
2021-11-30 06:29:59 +01:00
|
|
|
flex-direction: column;
|
2016-10-27 07:40:53 +02:00
|
|
|
width: 100%;
|
|
|
|
margin-top: 6px;
|
2021-11-19 05:12:00 +01:00
|
|
|
margin-bottom: -2px;
|
2021-11-30 06:29:59 +01:00
|
|
|
|
|
|
|
.compose_bottom_top_container {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose_bottom_bottom_container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
2021-07-07 12:13:19 +02:00
|
|
|
#compose_limit_indicator {
|
|
|
|
margin-right: 8px;
|
|
|
|
font-size: 12px;
|
|
|
|
color: hsl(39, 100%, 50%);
|
2021-11-12 06:29:37 +01:00
|
|
|
align-self: center;
|
2021-07-07 12:13:19 +02:00
|
|
|
|
|
|
|
&.over_limit {
|
2021-12-02 06:48:45 +01:00
|
|
|
color: hsl(0, 76%, 65%);
|
2021-07-07 12:13:19 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-27 07:40:53 +02:00
|
|
|
#compose {
|
|
|
|
position: fixed;
|
2020-08-06 02:42:07 +02:00
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2022-11-16 20:00:48 +01:00
|
|
|
z-index: 4;
|
2016-10-27 07:40:53 +02:00
|
|
|
width: 100%;
|
2017-11-16 01:26:02 +01:00
|
|
|
|
2018-10-08 22:31:26 +02:00
|
|
|
background-color: hsl(0, 0%, 100%);
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#compose-container {
|
2022-02-14 17:43:32 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2016-10-27 07:40:53 +02:00
|
|
|
width: 100%;
|
2020-09-15 22:23:01 +02:00
|
|
|
/* This should match the value for .app-main */
|
2016-10-27 07:40:53 +02:00
|
|
|
max-width: 1400px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
2022-02-01 14:29:57 +01:00
|
|
|
#compose_top {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2021-05-17 13:15:11 +02:00
|
|
|
#compose_top_right {
|
2022-02-01 14:29:57 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-04-06 15:34:45 +02:00
|
|
|
margin-bottom: auto;
|
2021-05-17 13:15:11 +02:00
|
|
|
|
|
|
|
button {
|
|
|
|
background: transparent;
|
2022-04-29 21:21:12 +02:00
|
|
|
color: inherit;
|
2022-04-19 17:31:49 +02:00
|
|
|
font-size: 15px;
|
|
|
|
font-weight: normal;
|
2021-05-17 13:15:11 +02:00
|
|
|
line-height: 20px;
|
2022-04-29 21:21:12 +02:00
|
|
|
opacity: 0.7;
|
2021-05-17 13:15:11 +02:00
|
|
|
border: 0;
|
|
|
|
padding: 0;
|
|
|
|
margin-left: 4px;
|
2021-07-15 23:03:49 +02:00
|
|
|
vertical-align: unset;
|
2022-04-19 17:31:49 +02:00
|
|
|
text-shadow: none;
|
2021-05-17 13:15:11 +02:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse_composebox_button,
|
|
|
|
#compose_close {
|
|
|
|
display: none;
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
2022-08-19 21:36:33 +02:00
|
|
|
.compose_banner {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 18px;
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0; /* override bootstrap */
|
|
|
|
/* 5px right padding + 10px left-margin of the neighbouring button will match the left padding */
|
|
|
|
padding: 12px 5px 12px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner_content {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose_banner_action_button {
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 5px 10px;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-left: 10px;
|
|
|
|
margin-top: 4.5px;
|
|
|
|
margin-bottom: 4.5px;
|
|
|
|
height: 32px;
|
|
|
|
white-space: nowrap;
|
2022-12-12 23:10:06 +01:00
|
|
|
|
|
|
|
/* Extra margin to ensure the layout is identical when there is no
|
|
|
|
close button. */
|
|
|
|
&.right_edge {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
2022-08-19 21:36:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.compose_banner_close_button {
|
|
|
|
font-size: 17px;
|
|
|
|
text-decoration: none;
|
2022-12-12 23:10:06 +01:00
|
|
|
padding: 12px 10px;
|
2022-08-19 21:36:33 +02:00
|
|
|
}
|
|
|
|
|
2022-12-07 01:33:29 +01:00
|
|
|
&.success {
|
|
|
|
background-color: hsl(147, 43%, 92%);
|
|
|
|
border: 1px solid hsla(147, 57%, 25%, 0.4);
|
|
|
|
color: hsl(147, 57%, 25%);
|
|
|
|
|
|
|
|
.compose_banner_close_button {
|
|
|
|
color: hsla(147, 57%, 25%, 0.5);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: hsl(147, 57%, 25%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
color: hsla(147, 57%, 25%, 0.75);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-19 21:36:33 +02:00
|
|
|
&.warning {
|
|
|
|
background-color: hsl(50, 75%, 92%);
|
|
|
|
border-color: hsla(38, 44%, 27%, 0.4);
|
|
|
|
color: hsl(38, 44%, 27%);
|
|
|
|
|
|
|
|
.compose_banner_close_button {
|
|
|
|
color: hsla(38, 44%, 27%, 0.5);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: hsl(38, 44%, 27%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
color: hsla(38, 44%, 27%, 0.75);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose_banner_action_button {
|
|
|
|
background-color: hsla(38, 44%, 27%, 0.1);
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: hsla(38, 44%, 27%, 0.12);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: hsla(38, 44%, 27%, 0.15);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-19 22:24:06 +02:00
|
|
|
|
|
|
|
&.error {
|
|
|
|
background-color: hsl(4, 35%, 90%);
|
|
|
|
border-color: hsla(3, 57%, 33%, 0.4);
|
|
|
|
color: hsl(4, 58%, 33%);
|
|
|
|
|
|
|
|
.compose_banner_close_button {
|
|
|
|
color: hsla(4, 58%, 33%, 0.5);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: hsl(4, 58%, 33%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
color: hsla(4, 58%, 33%, 0.75);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose_banner_action_button {
|
|
|
|
background-color: hsla(3, 57%, 33%, 0.1);
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: hsla(3, 57%, 33%, 0.12);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: hsla(3, 57%, 33%, 0.15);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-09 07:43:39 +01:00
|
|
|
|
|
|
|
&.info {
|
|
|
|
background-color: hsl(204, 58%, 92%);
|
|
|
|
border-color: hsla(204, 49%, 29%, 0.4);
|
|
|
|
position: relative;
|
|
|
|
color: hsl(204, 49%, 29%);
|
|
|
|
|
|
|
|
.compose_banner_close_button {
|
|
|
|
color: hsla(204, 49%, 29%, 0.5);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: hsl(204, 49%, 29%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
color: hsla(204, 49%, 29%, 0.75);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload_banner {
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.moving_bar {
|
|
|
|
position: absolute;
|
|
|
|
width: 0;
|
|
|
|
/* The progress updates seem to come every second or so,
|
|
|
|
so this is the smoothest it can probably get. */
|
|
|
|
transition: width 1s ease-in-out;
|
|
|
|
background: hsl(204, 63%, 85%);
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload_msg,
|
|
|
|
.compose_banner_close_button {
|
|
|
|
z-index: 1;
|
|
|
|
position: relative;
|
|
|
|
}
|
2022-08-19 21:36:33 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 07:40:53 +02:00
|
|
|
.composition-area {
|
|
|
|
position: relative;
|
2021-05-17 13:15:11 +02:00
|
|
|
flex: 1;
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
2023-02-16 11:14:13 +01:00
|
|
|
@keyframes message-limit-flash {
|
|
|
|
0% {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
box-shadow: 0 0 0 1pt hsl(0, 76%, 65%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-27 07:40:53 +02:00
|
|
|
textarea.new_message_textarea {
|
|
|
|
display: table-cell;
|
2016-12-02 01:36:40 +01:00
|
|
|
width: calc(100% - 12px);
|
2016-10-27 07:40:53 +02:00
|
|
|
padding: 5px;
|
|
|
|
height: 1.5em;
|
|
|
|
max-height: 22em;
|
2020-08-06 02:42:07 +02:00
|
|
|
margin-bottom: 0;
|
2016-11-09 22:32:16 +01:00
|
|
|
resize: vertical !important;
|
2016-10-27 07:40:53 +02:00
|
|
|
margin-top: 5px;
|
2022-11-29 18:47:34 +01:00
|
|
|
border-radius: 4px;
|
|
|
|
color: hsl(0, 0%, 33%);
|
|
|
|
background-color: hsl(0, 0%, 100%);
|
2021-07-07 12:13:19 +02:00
|
|
|
|
2021-07-10 18:54:00 +02:00
|
|
|
&.over_limit,
|
|
|
|
&.over_limit:focus {
|
2021-12-02 06:48:45 +01:00
|
|
|
box-shadow: 0 0 0 1pt hsl(0, 76%, 65%);
|
2021-07-10 19:33:45 +02:00
|
|
|
|
|
|
|
&.flash {
|
2023-02-16 11:14:13 +01:00
|
|
|
animation: message-limit-flash 0.5s ease-in-out infinite;
|
2021-07-10 19:33:45 +02:00
|
|
|
}
|
2021-07-07 12:13:19 +02:00
|
|
|
}
|
2022-11-29 18:47:34 +01:00
|
|
|
|
|
|
|
&:read-only,
|
|
|
|
&:disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
background-color: hsl(0, 0%, 93%);
|
|
|
|
}
|
2023-01-03 09:35:18 +01:00
|
|
|
|
|
|
|
&.invalid,
|
|
|
|
&.invalid:focus {
|
|
|
|
border: 1px solid hsl(3, 57%, 33%);
|
|
|
|
box-shadow: 0 0 2px hsl(3, 57%, 33%);
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
2016-12-02 01:36:40 +01:00
|
|
|
textarea.new_message_textarea,
|
2017-10-24 20:44:44 +02:00
|
|
|
.compose_table .recipient_box {
|
2017-11-16 00:52:41 +01:00
|
|
|
border: 1px solid hsla(0, 0%, 0%, 0.2);
|
2016-12-02 01:36:40 +01:00
|
|
|
box-shadow: none;
|
2017-02-28 00:12:22 +01:00
|
|
|
transition: border 0.2s ease;
|
2016-12-02 01:36:40 +01:00
|
|
|
|
2019-08-24 14:02:23 +02:00
|
|
|
&:focus {
|
2022-11-29 18:47:34 +01:00
|
|
|
outline: 0;
|
2019-08-24 14:02:23 +02:00
|
|
|
border: 1px solid hsl(0, 0%, 67%);
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2016-12-02 01:36:40 +01:00
|
|
|
}
|
|
|
|
|
2016-10-27 07:40:53 +02:00
|
|
|
input.recipient_box {
|
2020-08-06 02:42:07 +02:00
|
|
|
margin: 0;
|
2016-10-27 07:40:53 +02:00
|
|
|
height: 1.1em;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
2018-11-13 17:16:02 +01:00
|
|
|
#stream_message_recipient_stream.recipient_box {
|
2016-10-27 07:40:53 +02:00
|
|
|
width: 20%;
|
2020-08-06 02:42:07 +02:00
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
border-left: 0;
|
2022-02-01 14:29:57 +01:00
|
|
|
|
|
|
|
@media (width > $sm_min) {
|
|
|
|
min-width: 120px;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2019-08-24 14:06:44 +02:00
|
|
|
&:focus {
|
|
|
|
border-left: none;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2019-08-24 14:06:44 +02:00
|
|
|
&.lock-padding {
|
2022-03-25 08:24:53 +01:00
|
|
|
padding-left: 20px;
|
2019-08-24 14:06:44 +02:00
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
2019-08-24 14:05:09 +02:00
|
|
|
#stream_message_recipient_topic.recipient_box {
|
2022-03-22 19:52:26 +01:00
|
|
|
/* This width roughly corresponds to how long of a topic can appear in
|
|
|
|
the left sidebar with a single digit unread count without being
|
|
|
|
cut off. */
|
|
|
|
width: 175px;
|
2019-08-24 14:05:09 +02:00
|
|
|
}
|
|
|
|
|
2016-10-27 07:40:53 +02:00
|
|
|
#private_message_recipient.recipient_box {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-08-11 08:11:14 +02:00
|
|
|
#compose-send-button {
|
2021-11-23 18:53:29 +01:00
|
|
|
height: 24px;
|
2020-08-11 08:11:14 +02:00
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
margin-bottom: 0;
|
|
|
|
font-weight: 600;
|
|
|
|
font-size: 0.9em;
|
2021-11-30 06:26:05 +01:00
|
|
|
|
|
|
|
.loader {
|
|
|
|
display: none;
|
|
|
|
position: relative;
|
2021-12-04 06:00:37 +01:00
|
|
|
top: -6px;
|
2021-11-30 06:26:05 +01:00
|
|
|
}
|
2020-08-11 08:11:14 +02:00
|
|
|
}
|
|
|
|
|
2021-12-10 09:07:42 +01:00
|
|
|
.enter_sends_choices {
|
|
|
|
.enter_sends_choice {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
padding-top: 4px;
|
|
|
|
|
|
|
|
input[type="radio"] {
|
|
|
|
position: relative;
|
|
|
|
top: 5px;
|
2022-11-22 11:15:03 +01:00
|
|
|
width: auto;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 4px 0 0;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 1px dotted hsl(0, 0%, 20%);
|
|
|
|
outline: 5px auto -webkit-focus-ring-color;
|
|
|
|
outline-offset: -2px;
|
|
|
|
}
|
2021-12-10 09:07:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding: 0 0 4px;
|
|
|
|
border-bottom: 1px solid hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.enter_sends_choice_text {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.enter_sends_minor,
|
|
|
|
.enter_sends_minor kbd {
|
|
|
|
opacity: 0.9;
|
|
|
|
font-size: 11px;
|
|
|
|
color: hsl(0, 0%, 50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-25 10:00:04 +01:00
|
|
|
.enter_sends {
|
|
|
|
font-size: 12px;
|
|
|
|
height: 14px;
|
|
|
|
padding-left: 4px;
|
|
|
|
opacity: 0.7;
|
2021-12-02 05:59:26 +01:00
|
|
|
margin-bottom: 5px;
|
2021-12-10 09:07:42 +01:00
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
cursor: pointer;
|
2021-12-02 05:59:26 +01:00
|
|
|
|
2021-12-02 07:48:43 +01:00
|
|
|
@media (width < $mm_min) {
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
2021-12-02 05:59:26 +01:00
|
|
|
kbd {
|
|
|
|
height: 16px;
|
2021-12-10 09:07:42 +01:00
|
|
|
padding: 0 4px;
|
2021-12-02 05:59:26 +01:00
|
|
|
}
|
2021-11-25 10:00:04 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
|
2021-11-25 10:00:04 +01:00
|
|
|
.enter_sends_true,
|
|
|
|
.enter_sends_false {
|
|
|
|
display: none;
|
2019-08-24 13:53:10 +02:00
|
|
|
}
|
2021-12-03 11:09:18 +01:00
|
|
|
|
2021-12-10 09:07:42 +01:00
|
|
|
i {
|
|
|
|
padding-left: 3px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: 600;
|
2021-12-03 11:09:18 +01:00
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#stream-message,
|
|
|
|
#private-message {
|
2018-03-31 01:46:43 +02:00
|
|
|
display: flex;
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
2018-07-11 18:29:48 +02:00
|
|
|
#private-message {
|
|
|
|
align-items: center;
|
2022-02-01 14:29:57 +01:00
|
|
|
width: 100%;
|
2018-07-11 18:29:48 +02:00
|
|
|
}
|
|
|
|
|
2021-12-03 11:17:24 +01:00
|
|
|
.tippy-content .compose_control_buttons_container {
|
|
|
|
.compose_gif_icon {
|
|
|
|
bottom: 5px;
|
2021-11-23 19:01:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-12 06:29:37 +01:00
|
|
|
.compose_control_buttons_container {
|
|
|
|
margin-right: auto;
|
|
|
|
display: flex;
|
|
|
|
gap: 4px;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.compose_gif_icon {
|
|
|
|
font-size: 22px;
|
2021-12-03 11:17:24 +01:00
|
|
|
height: 18px;
|
2022-02-08 08:19:17 +01:00
|
|
|
line-height: 18px;
|
2021-11-12 06:29:37 +01:00
|
|
|
}
|
|
|
|
|
2022-02-21 13:15:03 +01:00
|
|
|
.fa-eye {
|
|
|
|
position: relative;
|
|
|
|
top: -0.7px;
|
|
|
|
}
|
|
|
|
|
2021-11-23 19:01:36 +01:00
|
|
|
.compose_control_menu {
|
2022-02-03 12:54:49 +01:00
|
|
|
padding: 0 7px;
|
2021-11-23 19:01:36 +01:00
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose_control_menu_wrapper {
|
2022-03-08 07:22:44 +01:00
|
|
|
opacity: 0.7;
|
2021-11-23 19:01:36 +01:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2022-03-08 07:22:44 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.compose_control_menu {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2021-11-23 19:01:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.hide-sm,
|
|
|
|
.hide-lg {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 4px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-11-13 05:44:28 +01:00
|
|
|
.divider {
|
|
|
|
color: hsl(0, 0%, 88%);
|
|
|
|
font-size: 20px;
|
|
|
|
margin: 0 3px;
|
|
|
|
}
|
2022-02-03 12:53:14 +01:00
|
|
|
|
|
|
|
.compose_draft_button {
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 600;
|
|
|
|
font-family: "Source Sans 3", sans-serif;
|
2022-02-18 14:50:59 +01:00
|
|
|
padding: 0 5px;
|
2022-02-21 13:15:03 +01:00
|
|
|
position: relative;
|
|
|
|
top: 0.7px;
|
2022-02-03 12:53:14 +01:00
|
|
|
}
|
2022-02-03 12:54:49 +01:00
|
|
|
|
|
|
|
.compose_help_button {
|
2022-02-18 14:51:25 +01:00
|
|
|
font-size: 20px;
|
|
|
|
line-height: 17px;
|
2022-02-03 12:54:49 +01:00
|
|
|
}
|
2021-11-12 06:29:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.compose_right_float_container {
|
|
|
|
display: flex;
|
2021-11-25 10:00:04 +01:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-end;
|
2021-11-12 06:29:37 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
gap: 4px;
|
2021-11-25 10:00:04 +01:00
|
|
|
margin-top: 2px;
|
2021-03-19 13:21:18 +01:00
|
|
|
}
|
|
|
|
|
2021-04-14 20:25:35 +02:00
|
|
|
a.compose_control_button {
|
2021-11-12 06:29:37 +01:00
|
|
|
padding: 5px;
|
2021-06-08 02:21:02 +02:00
|
|
|
opacity: 0.7;
|
2017-11-30 00:02:15 +01:00
|
|
|
color: inherit;
|
2016-10-27 07:40:53 +02:00
|
|
|
text-decoration: none;
|
2021-11-12 06:29:37 +01:00
|
|
|
font-size: 17px;
|
2016-10-27 07:40:53 +02:00
|
|
|
text-align: center;
|
|
|
|
|
2019-08-24 13:58:05 +02:00
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
2021-04-15 16:18:36 +02:00
|
|
|
/* This is used to override the
|
|
|
|
* properties of `a.compose_control_button`
|
|
|
|
* without using `!important`.
|
|
|
|
*/
|
|
|
|
a.compose_control_button.hide {
|
2021-04-27 21:58:19 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-10-27 07:40:53 +02:00
|
|
|
.drag {
|
|
|
|
display: none;
|
|
|
|
height: 18px;
|
|
|
|
width: 100%;
|
|
|
|
top: 23px;
|
|
|
|
position: relative;
|
|
|
|
cursor: ns-resize;
|
|
|
|
}
|
|
|
|
|
2019-02-05 14:44:16 +01:00
|
|
|
.preview_message_area {
|
2016-10-27 07:40:53 +02:00
|
|
|
/* minus 5px padding. */
|
2016-12-02 01:36:40 +01:00
|
|
|
width: calc(100% - 12px);
|
2016-10-27 07:40:53 +02:00
|
|
|
padding: 5px;
|
2021-06-12 00:45:36 +02:00
|
|
|
margin-top: 5px;
|
2016-10-27 07:40:53 +02:00
|
|
|
/* the maximum height the textarea gets to. */
|
|
|
|
max-height: 308px;
|
|
|
|
/* the minimum height the textarea collapses to. */
|
2021-06-12 00:45:36 +02:00
|
|
|
min-height: 42px;
|
2016-10-27 07:40:53 +02:00
|
|
|
overflow: auto;
|
|
|
|
|
2018-10-12 07:22:46 +02:00
|
|
|
border: 1px solid hsl(0, 0%, 67%);
|
2016-10-27 07:40:53 +02:00
|
|
|
border-radius: 4px;
|
2017-11-16 01:33:33 +01:00
|
|
|
background-color: hsla(0, 0%, 0%, 0.02);
|
2017-02-24 00:21:28 +01:00
|
|
|
cursor: not-allowed;
|
2016-10-27 07:40:53 +02:00
|
|
|
}
|
|
|
|
|
2021-04-20 19:50:01 +02:00
|
|
|
.markdown_preview_spinner {
|
2016-10-27 07:40:53 +02:00
|
|
|
margin: auto;
|
|
|
|
}
|
2017-12-11 11:39:49 +01:00
|
|
|
|
2019-08-24 13:59:46 +02:00
|
|
|
.dropdown-menu {
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin: 0;
|
|
|
|
background: hsl(0, 0%, 100%);
|
|
|
|
}
|
2019-07-26 12:39:14 +02:00
|
|
|
|
2019-08-24 13:59:46 +02:00
|
|
|
.typeahead-header {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 20px;
|
2019-09-09 06:30:00 +02:00
|
|
|
padding-top: 4px;
|
2019-07-31 09:11:25 +02:00
|
|
|
border-top: 1px solid hsla(0, 0%, 0%, 0.2);
|
2019-08-24 13:59:46 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2019-07-26 12:39:14 +02:00
|
|
|
|
2019-08-24 13:59:46 +02:00
|
|
|
#typeahead-header-text {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.typeahead {
|
|
|
|
background: hsl(0, 0%, 100%);
|
|
|
|
}
|
2019-07-26 12:39:14 +02:00
|
|
|
}
|
|
|
|
|
2018-08-13 23:13:00 +02:00
|
|
|
.compose_mobile_stream_button i,
|
|
|
|
.compose_mobile_private_button i {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
2019-10-24 05:38:18 +02:00
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width < $xl_min) {
|
2021-06-10 16:52:29 +02:00
|
|
|
#compose-content {
|
2019-10-24 05:38:18 +02:00
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width < $md_min) {
|
2021-06-10 16:52:29 +02:00
|
|
|
#compose-content {
|
2019-10-24 05:38:18 +02:00
|
|
|
margin-right: 7px;
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 02:49:05 +01:00
|
|
|
@media (width < $mm_min) {
|
2019-10-24 05:38:18 +02:00
|
|
|
#stream_message_recipient_topic.recipient_box {
|
2022-03-22 19:52:26 +01:00
|
|
|
/* The max-width here is designed to allow this to share space with
|
|
|
|
the Stream input in small windows, without leaving empty space. */
|
|
|
|
max-width: calc(100% - 90px);
|
2022-02-01 14:29:57 +01:00
|
|
|
min-width: 110px;
|
2019-10-24 05:38:18 +02:00
|
|
|
}
|
|
|
|
|
2021-06-10 16:52:29 +02:00
|
|
|
#compose-content {
|
2019-10-24 05:38:18 +02:00
|
|
|
margin-right: 5px;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
}
|
2021-05-17 13:15:11 +02:00
|
|
|
|
|
|
|
#compose.compose-fullscreen {
|
|
|
|
z-index: 99;
|
|
|
|
|
|
|
|
#compose-container {
|
2021-07-15 21:26:16 +02:00
|
|
|
height: 100%;
|
2021-05-17 13:15:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.message_comp {
|
|
|
|
flex: 1;
|
|
|
|
display: flex !important;
|
|
|
|
flex-flow: column;
|
|
|
|
}
|
|
|
|
|
2022-01-31 11:57:30 +01:00
|
|
|
#compose-textarea,
|
2021-07-19 10:56:08 +02:00
|
|
|
#preview_message_area {
|
2022-12-07 12:19:31 +01:00
|
|
|
/* Setting height to 0 is necessary to make the flex+Simplebar
|
|
|
|
combination work correctly, without pushing the compose
|
|
|
|
controls offscreen when previewing a very tall message. */
|
2022-01-31 11:57:30 +01:00
|
|
|
max-height: none !important;
|
2022-12-07 12:19:31 +01:00
|
|
|
height: 0;
|
2021-07-19 10:56:08 +02:00
|
|
|
flex: 1;
|
|
|
|
}
|
2021-05-17 13:15:11 +02:00
|
|
|
}
|