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

93 lines
2.0 KiB
SCSS
Raw Normal View History

2021-12-19 10:28:41 +05:30
@use '../../partials/flex';
@use '../../partials/dir';
2021-07-28 18:45:52 +05:30
.people-drawer {
2021-12-19 10:28:41 +05:30
@extend .cp-fx__column;
2021-07-28 18:45:52 +05:30
width: var(--people-drawer-width);
background-color: var(--bg-surface-low);
2021-12-19 10:28:41 +05:30
@include dir.side(border, 1px solid var(--bg-surface-border), none);
2021-07-28 18:45:52 +05:30
&__member-count {
color: var(--tc-surface-low);
}
&__content-wrapper {
2021-12-19 10:28:41 +05:30
@extend .cp-fx__item-one;
@extend .cp-fx__column;
2021-07-28 18:45:52 +05:30
}
&__scrollable {
2021-12-19 10:28:41 +05:30
@extend .cp-fx__item-one;
2021-07-28 18:45:52 +05:30
}
2021-10-22 20:02:01 +05:30
&__noresult {
padding: var(--sp-extra-tight) var(--sp-normal);
text-align: center;
}
2021-07-28 18:45:52 +05:30
&__sticky {
& .people-search {
2021-10-21 17:50:49 +05:30
--search-input-height: 40px;
min-height: var(--search-input-height);
2021-07-28 18:45:52 +05:30
2022-01-30 18:47:19 +05:30
margin: 0 var(--sp-extra-tight);
2021-07-28 18:45:52 +05:30
position: relative;
bottom: var(--sp-normal);
2021-10-22 20:02:01 +05:30
display: flex;
align-items: center;
2021-07-28 18:45:52 +05:30
2021-10-22 20:02:01 +05:30
& > .ic-raw,
& > .ic-btn {
position: absolute;
z-index: 99;
}
& > .ic-raw {
2021-12-19 10:28:41 +05:30
@include dir.prop(left, var(--sp-tight), unset);
2021-12-19 20:32:47 +05:30
@include dir.prop(right, unset, var(--sp-tight));
2021-10-22 20:02:01 +05:30
}
& > .ic-btn {
2021-12-19 10:28:41 +05:30
@include dir.prop(right, 2px, unset);
@include dir.prop(left, unset, 2px);
2021-10-22 20:02:01 +05:30
}
& .input-container {
flex: 1;
}
2021-07-28 18:45:52 +05:30
& .input {
2022-01-30 18:47:19 +05:30
padding: 0 44px;
2021-10-21 17:50:49 +05:30
height: var(--search-input-height);
2021-07-28 18:45:52 +05:30
}
}
}
}
.people-drawer__content {
padding-top: var(--sp-extra-tight);
2021-10-21 17:50:49 +05:30
padding-bottom: calc(2 * var(--sp-normal));
2021-10-23 15:27:54 +05:30
2022-01-30 18:47:19 +05:30
& .people-selector {
padding: var(--sp-extra-tight);
border-radius: var(--bo-radius);
2022-01-31 12:15:58 +05:30
&__container {
@include dir.side(margin, var(--sp-extra-tight), 0);
}
2022-01-30 18:47:19 +05:30
}
2021-10-23 15:27:54 +05:30
& .segmented-controls {
display: flex;
margin-bottom: var(--sp-extra-tight);
2021-12-19 10:28:41 +05:30
@include dir.side(margin, var(--sp-extra-tight), 0);
2021-10-23 15:27:54 +05:30
}
& .segment-btn {
flex: 1;
padding: var(--sp-ultra-tight) 0;
}
2021-07-28 18:45:52 +05:30
}
.people-drawer__load-more {
2021-12-19 10:28:41 +05:30
padding: var(--sp-normal) 0 0;
@include dir.side(padding, var(--sp-normal), var(--sp-extra-tight));
2021-07-28 18:45:52 +05:30
& .btn-surface {
width: 100%;
}
}