2019-08-14 09:48:44 +00:00
|
|
|
.reply-box {
|
2020-11-29 07:58:36 +00:00
|
|
|
transition: box-shadow .35s $swift-ease-out-function,
|
|
|
|
height 2s $swift-ease-out-function;
|
|
|
|
|
2020-07-04 08:20:44 +00:00
|
|
|
|
|
|
|
&.is-focused {
|
2021-01-13 12:36:25 +00:00
|
|
|
box-shadow: var(--shadow);
|
2020-07-04 08:20:44 +00:00
|
|
|
}
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
.reply-box__top {
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2020-03-22 10:24:36 +00:00
|
|
|
.icon {
|
2019-08-14 09:48:44 +00:00
|
|
|
color: $medium-gray;
|
|
|
|
cursor: pointer;
|
2020-02-16 10:16:26 +00:00
|
|
|
font-size: $font-size-medium;
|
|
|
|
margin-right: $space-small;
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: $color-woot;
|
|
|
|
}
|
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2020-03-22 10:24:36 +00:00
|
|
|
|
|
|
|
.attachment {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: $space-one;
|
|
|
|
padding: 0 $space-small;
|
|
|
|
}
|
|
|
|
|
2020-11-29 07:58:36 +00:00
|
|
|
>textarea {
|
2019-08-14 09:48:44 +00:00
|
|
|
@include ghost-input();
|
|
|
|
@include margin(0);
|
|
|
|
background: transparent;
|
|
|
|
// Override min-height : 50px in foundation
|
|
|
|
//
|
2020-06-18 09:47:45 +00:00
|
|
|
max-height: $space-mega * 2.4;
|
2021-01-13 12:36:25 +00:00
|
|
|
min-height: 4.8rem;
|
|
|
|
padding: var(--space-normal) 0 0;
|
2020-02-16 10:16:26 +00:00
|
|
|
resize: none;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-13 12:36:25 +00:00
|
|
|
&.is-private {
|
|
|
|
background: var(--y-50);
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2021-01-13 12:36:25 +00:00
|
|
|
.reply-box__top {
|
|
|
|
background: var(--y-50);
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2021-01-13 12:36:25 +00:00
|
|
|
>input {
|
|
|
|
background: var(--y-50);
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
2021-01-13 12:36:25 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|