2020-11-29 07:58:36 +00:00
|
|
|
$resolve-button-width: 13.2rem;
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
// Conversation header - Light BG
|
|
|
|
.conv-header {
|
|
|
|
@include padding($space-small $space-normal);
|
|
|
|
@include background-white;
|
|
|
|
@include flex;
|
|
|
|
@include flex-align($x: justify, $y: middle);
|
|
|
|
@include border-normal-bottom;
|
2020-02-16 10:16:26 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
.multiselect-box {
|
|
|
|
@include flex;
|
|
|
|
@include flex-align($x: justify, $y: middle);
|
2021-04-07 06:15:33 +00:00
|
|
|
border: 1px solid var(--color-border);
|
|
|
|
border-radius: var(--space-smaller);
|
2020-08-17 05:55:13 +00:00
|
|
|
margin-right: var(--space-small);
|
2021-04-19 16:54:45 +00:00
|
|
|
width: 21.6rem;
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2021-04-07 06:15:33 +00:00
|
|
|
.icon {
|
2020-03-22 06:14:40 +00:00
|
|
|
color: $medium-gray;
|
2019-08-14 09:48:44 +00:00
|
|
|
font-size: $font-size-default;
|
2020-03-22 06:14:40 +00:00
|
|
|
line-height: 3.8rem;
|
2019-08-14 09:48:44 +00:00
|
|
|
padding-left: $space-slab;
|
|
|
|
padding-right: $space-smaller;
|
|
|
|
}
|
|
|
|
|
|
|
|
.multiselect {
|
2021-04-19 16:54:45 +00:00
|
|
|
border-radius: var(--border-radius-small);
|
2019-08-14 09:48:44 +00:00
|
|
|
margin: 0;
|
2021-04-07 06:15:33 +00:00
|
|
|
min-width: 0;
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
.multiselect__tags {
|
2021-04-19 16:54:45 +00:00
|
|
|
border-color: transparent;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// User thumbnail and text
|
|
|
|
.user {
|
|
|
|
@include flex;
|
|
|
|
@include flex-align($x: center, $y: middle);
|
2021-05-07 12:58:47 +00:00
|
|
|
margin-right: var(--space-normal);
|
|
|
|
min-width: 0;
|
2019-10-27 13:58:02 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
.user--name {
|
2019-10-27 13:58:02 +00:00
|
|
|
@include margin(0);
|
2021-05-07 12:58:47 +00:00
|
|
|
display: inline-block;
|
2019-08-14 09:48:44 +00:00
|
|
|
font-size: $font-size-medium;
|
2020-05-02 04:17:36 +00:00
|
|
|
line-height: 1.3;
|
2020-02-16 10:16:26 +00:00
|
|
|
text-transform: capitalize;
|
2021-05-07 12:58:47 +00:00
|
|
|
width: 100%;
|
2019-11-14 08:16:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.user--profile__meta {
|
2020-03-22 06:14:40 +00:00
|
|
|
align-items: flex-start;
|
2019-11-14 08:16:43 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-05-07 12:58:47 +00:00
|
|
|
justify-content: flex-start;
|
2019-08-14 09:48:44 +00:00
|
|
|
margin-left: $space-slab;
|
2021-05-07 12:58:47 +00:00
|
|
|
min-width: 0;
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
2019-11-14 08:16:43 +00:00
|
|
|
|
|
|
|
.user--profile__button {
|
|
|
|
font-size: $font-size-mini;
|
|
|
|
margin-top: $space-micro;
|
2020-03-22 06:14:40 +00:00
|
|
|
padding: 0;
|
2019-11-14 08:16:43 +00:00
|
|
|
}
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-03 08:41:07 +00:00
|
|
|
|
|
|
|
.header-actions-wrap {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
&.has-open-sidebar {
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
}
|