bigbuffet-rw/app/styles/chats.scss

185 lines
3.1 KiB
SCSS
Raw Normal View History

2020-08-25 12:58:35 -07:00
.pane {
2020-08-25 22:21:54 -07:00
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
border-radius: 6px 6px 0 0;
2020-08-24 19:26:42 -07:00
position: fixed;
bottom: 0;
right: 20px;
width: 265px;
2020-08-25 15:07:07 -07:00
height: 265px;
max-height: calc(100vh - 70px);
display: flex;
flex-direction: column;
2020-08-27 10:55:38 -07:00
z-index: 999;
2020-08-27 11:04:16 -07:00
transition: 0.05s;
2020-08-24 19:26:42 -07:00
2020-08-25 15:07:07 -07:00
&--main {
height: calc(100vh - 70px);
2020-08-25 17:13:54 -07:00
.pane__header .pane__title {
2020-08-25 17:13:54 -07:00
font-size: 16px;
}
2020-08-25 15:07:07 -07:00
}
2020-08-25 16:45:05 -07:00
&--minimized {
2020-08-25 16:58:40 -07:00
height: 31px;
2020-08-25 16:45:05 -07:00
}
2020-08-24 19:26:42 -07:00
&__header {
2020-08-25 16:45:05 -07:00
box-sizing: border-box;
2020-08-24 19:26:42 -07:00
background: var(--brand-color);
color: #fff;
2020-08-25 17:13:54 -07:00
padding: 0 10px;
2020-08-24 19:26:42 -07:00
font-weight: bold;
border-radius: 6px 6px 0 0;
2020-08-25 15:07:07 -07:00
display: flex;
align-items: center;
2020-08-25 16:45:05 -07:00
height: 31px;
2020-08-25 15:07:07 -07:00
.account__avatar {
margin-right: 7px;
}
2020-08-25 17:13:54 -07:00
.pane__title {
2020-08-25 15:07:07 -07:00
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1;
2020-08-25 17:13:54 -07:00
height: 100%;
background: transparent;
border: 0;
padding: 0;
color: #fff;
font-weight: bold;
text-align: left;
font-size: 14px;
2020-08-25 15:07:07 -07:00
}
2020-08-25 16:11:48 -07:00
.icon-button {
color: #fff;
> div {
height: auto !important;
width: auto !important;
margin-right: -6px;
}
}
.pane__close {
margin-left: auto;
}
2020-08-27 13:43:19 -07:00
.icon-with-badge__badge {
position: static;
pointer-events: none;
width: 18px;
height: 18px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 7px;
2020-08-27 13:43:19 -07:00
}
2020-08-24 19:26:42 -07:00
}
&__content {
background: var(--foreground-color);
2020-08-25 15:07:07 -07:00
display: flex;
2020-08-25 19:03:10 -07:00
flex: 1;
2020-08-25 15:07:07 -07:00
flex-direction: column;
2020-08-25 19:03:10 -07:00
overflow: hidden;
2020-08-25 15:07:07 -07:00
.chat-box {
display: flex;
flex: 1;
flex-direction: column;
overflow: hidden;
2020-08-25 15:07:07 -07:00
}
2020-08-24 19:26:42 -07:00
}
}
2020-08-25 19:03:10 -07:00
.chat-messages {
overflow-y: scroll;
flex: 1;
2020-08-25 19:03:10 -07:00
}
.chat-message {
margin: 14px 10px;
2020-08-25 22:21:54 -07:00
display: flex;
2020-08-25 19:03:10 -07:00
&__bubble {
2020-08-27 17:28:46 -07:00
font-size: 15px;
2020-08-25 19:03:10 -07:00
padding: 4px 10px;
max-width: 70%;
border-radius: 10px;
background-color: var(--background-color);
2020-08-26 22:33:57 -07:00
overflow: hidden;
text-overflow: ellipsis;
a {
color: var(--brand-color--hicontrast);
}
2020-08-25 19:03:10 -07:00
}
2020-08-25 22:21:54 -07:00
&--me .chat-message__bubble {
margin-left: auto;
background-color: hsla(var(--brand-color_hsl), 0.2);
}
2020-08-27 10:50:08 -07:00
&--pending .chat-message__bubble {
opacity: 0.5;
}
2020-08-25 19:03:10 -07:00
}
2020-08-27 10:53:44 -07:00
.chat-list {
overflow-y: auto;
2020-08-27 12:02:52 -07:00
flex: 1;
&__content {
height: 100%;
}
.empty-column-indicator {
height: 100%;
box-sizing: border-box;
background: transparent;
align-items: start;
}
2020-08-27 13:43:19 -07:00
.account__display-name {
position: relative;
}
.icon-with-badge__badge {
top: 0;
right: 0;
left: auto;
bottom: auto;
}
2020-08-27 10:53:44 -07:00
}
.chat-box {
&__actions {
background: var(--foreground-color);
margin-top: auto;
padding: 6px;
textarea {
width: 100%;
margin: 0;
box-sizing: border-box;
padding: 6px;
background: var(--background-color);
border: 0;
border-radius: 6px;
color: var(--primary-text-color);
font-size: 15px;
}
}
}
2020-08-28 11:27:40 -07:00
.column .chat-box {
max-height: calc(100vh - 125px);
overflow: hidden;
display: flex;
flex-direction: column;
}