cinny/src/app/organisms/room/RoomViewInput.scss

107 lines
2.1 KiB
SCSS
Raw Normal View History

@use '../../partials/dir';
2021-08-31 16:13:31 +03:00
.room-input {
2021-08-04 12:52:59 +03:00
padding: var(--sp-extra-tight) calc(var(--sp-normal) - 2px);
display: flex;
min-height: 56px;
2021-08-04 12:52:59 +03:00
&__alert {
2021-08-04 12:52:59 +03:00
margin: auto;
padding: 0 var(--sp-tight);
text-align: center;
2021-08-04 12:52:59 +03:00
}
&__input-container {
flex: 1;
min-width: 0;
display: flex;
align-items: center;
margin: 0 calc(var(--sp-tight) - 2px);
background-color: var(--bg-surface-low);
box-shadow: var(--bs-surface-border);
border-radius: var(--bo-radius);
& > .ic-raw {
transform: scale(0.8);
2021-08-08 19:26:34 +03:00
margin: 0 var(--sp-extra-tight);
2021-08-04 12:52:59 +03:00
}
2021-08-04 12:52:59 +03:00
& .scrollbar {
max-height: 50vh;
2021-08-08 19:26:34 +03:00
flex: 1;
&:first-child {
@include dir.side(margin, var(--sp-tight), 0);
2021-08-08 19:26:34 +03:00
}
2021-08-04 12:52:59 +03:00
}
}
&__textarea-wrapper {
min-height: 40px;
display: flex;
align-items: center;
& textarea {
resize: none;
width: 100%;
min-width: 0;
min-height: 100%;
2021-08-08 19:26:34 +03:00
padding: var(--sp-ultra-tight) 0;
2021-08-04 12:52:59 +03:00
&::placeholder {
color: var(--tc-surface-low);
}
&:focus {
outline: none;
}
}
}
}
2021-08-31 16:13:31 +03:00
.room-attachment {
2021-08-04 12:52:59 +03:00
--side-spacing: calc(var(--sp-normal) + var(--av-small) + var(--sp-tight));
display: flex;
align-items: center;
@include dir.side(margin, var(--side-spacing), 0);
2021-08-04 12:52:59 +03:00
margin-top: var(--sp-extra-tight);
line-height: 0;
&__preview > img {
max-height: 40px;
border-radius: var(--bo-radius);
}
&__icon {
padding: var(--sp-extra-tight);
background-color: var(--bg-surface-low);
box-shadow: var(--bs-surface-border);
border-radius: var(--bo-radius);
}
&__info {
flex: 1;
min-width: 0;
margin: 0 var(--sp-tight);
}
&__option button {
transition: transform 200ms ease-in-out;
transform: translateY(-48px);
& .ic-raw {
transition: transform 200ms ease-in-out;
transform: rotate(45deg);
background-color: var(--bg-caution);
}
}
2021-08-11 10:59:01 +03:00
}
2021-08-31 16:13:31 +03:00
.room-reply {
2021-08-11 10:59:01 +03:00
display: flex;
align-items: center;
background-color: var(--bg-surface-low);
border-bottom: 1px solid var(--bg-surface-border);
& .ic-btn-surface {
@include dir.side(margin, 17px, 13px);
2021-08-11 10:59:01 +03:00
border-radius: 0;
}
2021-08-04 12:52:59 +03:00
}