soapbox/app/styles/chats.scss

76 wiersze
1.3 KiB
SCSS
Czysty Zwykły widok Historia

2020-08-25 19:58:35 +00:00
.pane {
2020-08-25 22:07:07 +00:00
@include standard-panel-shadow;
2020-08-25 02:26:42 +00:00
position: fixed;
bottom: 0;
right: 20px;
width: 265px;
2020-08-25 22:07:07 +00:00
height: 265px;
max-height: calc(100vh - 70px);
display: flex;
flex-direction: column;
2020-08-25 02:32:39 +00:00
z-index: 99999;
2020-08-25 02:26:42 +00:00
2020-08-25 22:07:07 +00:00
&--main {
height: calc(100vh - 70px);
}
2020-08-25 02:26:42 +00:00
&__header {
background: var(--brand-color);
color: #fff;
padding: 6px 10px;
2020-08-25 22:07:07 +00:00
font-size: 16px;
2020-08-25 02:26:42 +00:00
font-weight: bold;
border-radius: 6px 6px 0 0;
2020-08-25 22:07:07 +00:00
display: flex;
align-items: center;
.account__avatar {
margin-right: 7px;
}
.display-name__account {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
2020-08-25 23:11:48 +00:00
.icon-button {
color: #fff;
> div {
height: auto !important;
width: auto !important;
margin-right: -6px;
}
}
.pane__close {
margin-left: auto;
}
2020-08-25 02:26:42 +00:00
}
&__content {
2020-08-25 22:07:07 +00:00
height: 100%;
2020-08-25 02:26:42 +00:00
background: var(--foreground-color);
2020-08-25 22:07:07 +00:00
display: flex;
flex-direction: column;
2020-08-25 02:26:42 +00:00
}
&__actions {
background: var(--foreground-color);
2020-08-25 22:07:07 +00:00
margin-top: auto;
input {
width: 100%;
margin: 0;
box-sizing: border-box;
padding: 6px;
background: var(--background-color);
border: 6px solid var(--foreground-color);
border-radius: 10px;
color: var(--primary-text-color);
font-size: 16px;
}
2020-08-25 02:26:42 +00:00
}
}