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

107 lines
2.1 KiB
SCSS
Raw Normal View History

2021-12-19 10:28:41 +05:30
@use '../../partials/dir';
2021-08-31 18:43:31 +05:30
.room-input {
2021-08-04 15:22:59 +05:30
padding: var(--sp-extra-tight) calc(var(--sp-normal) - 2px);
display: flex;
min-height: 56px;
2021-08-04 15:22:59 +05:30
&__alert {
2021-08-04 15:22:59 +05:30
margin: auto;
padding: 0 var(--sp-tight);
text-align: center;
2021-08-04 15:22:59 +05:30
}
&__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 21:56:34 +05:30
margin: 0 var(--sp-extra-tight);
2021-08-04 15:22:59 +05:30
}
2021-08-04 15:22:59 +05:30
& .scrollbar {
max-height: 50vh;
2021-08-08 21:56:34 +05:30
flex: 1;
&:first-child {
2021-12-19 10:28:41 +05:30
@include dir.side(margin, var(--sp-tight), 0);
2021-08-08 21:56:34 +05:30
}
2021-08-04 15:22:59 +05:30
}
}
&__textarea-wrapper {
min-height: 40px;
display: flex;
align-items: center;
& textarea {
resize: none;
width: 100%;
min-width: 0;
min-height: 100%;
2021-08-08 21:56:34 +05:30
padding: var(--sp-ultra-tight) 0;
2021-08-04 15:22:59 +05:30
&::placeholder {
color: var(--tc-surface-low);
}
&:focus {
outline: none;
}
}
}
}
2021-08-31 18:43:31 +05:30
.room-attachment {
2021-08-04 15:22:59 +05:30
--side-spacing: calc(var(--sp-normal) + var(--av-small) + var(--sp-tight));
display: flex;
align-items: center;
2021-12-19 10:28:41 +05:30
@include dir.side(margin, var(--side-spacing), 0);
2021-08-04 15:22:59 +05:30
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 13:29:01 +05:30
}
2021-08-31 18:43:31 +05:30
.room-reply {
2021-08-11 13:29:01 +05:30
display: flex;
align-items: center;
background-color: var(--bg-surface-low);
border-bottom: 1px solid var(--bg-surface-border);
& .ic-btn-surface {
2021-12-19 10:28:41 +05:30
@include dir.side(margin, 17px, 13px);
2021-08-11 13:29:01 +05:30
border-radius: 0;
}
2021-08-04 15:22:59 +05:30
}