2020-04-24 03:48:48 +03:00
|
|
|
|
#column-left {
|
2020-06-05 19:01:06 +03:00
|
|
|
|
//display: flex;
|
2020-02-06 22:43:07 +07:00
|
|
|
|
flex-direction: column;
|
2020-09-23 23:29:53 +03:00
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 18rem;
|
2021-01-12 15:22:00 +04:00
|
|
|
|
// ! -1 because of border-left and border-right on whole page
|
|
|
|
|
max-width: calc(#{$large-screen} / 4 - 1px);
|
2020-09-23 23:29:53 +03:00
|
|
|
|
|
2020-09-26 01:47:43 +03:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 100%;
|
2020-12-21 02:38:21 +02:00
|
|
|
|
|
|
|
|
|
body:not(.is-left-column-shown) & {
|
|
|
|
|
transform: translate3d(-25vw, 0, 0);
|
|
|
|
|
filter: brightness(80%);
|
|
|
|
|
}
|
2020-09-26 01:47:43 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@include respond-to(floating-left-sidebar) {
|
|
|
|
|
display: flex;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
2020-10-31 00:39:36 +02:00
|
|
|
|
/* height: calc(var(--vh, 1vh) * 100);
|
|
|
|
|
min-height: calc(var(--vh, 1vh) * 100) !important; */
|
2020-09-26 01:47:43 +03:00
|
|
|
|
width: 26.5rem;
|
|
|
|
|
transform: translate3d(-5rem, 0, 0);
|
|
|
|
|
transition: transform var(--layer-transition);
|
2021-02-16 19:36:26 +04:00
|
|
|
|
max-width: unset;
|
2021-01-03 19:59:13 +04:00
|
|
|
|
|
|
|
|
|
body.animation-level-0 & {
|
|
|
|
|
transition: none;
|
|
|
|
|
}
|
2020-09-26 01:47:43 +03:00
|
|
|
|
|
|
|
|
|
body.is-left-column-shown & {
|
|
|
|
|
transform: translateZ(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@include respond-to(no-floating-left-sidebar) {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 23:29:53 +03:00
|
|
|
|
@include respond-to(before-medium-screens) {
|
|
|
|
|
flex: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ! WARNING, ОЧЕНЬ КРУТОЙ КОСТЫЛЬ - ФИКС ЧЁРНОЙ РАМКИ У КАРТИНОК С ХВОСТИКОМ
|
|
|
|
|
html.is-safari & {
|
|
|
|
|
@include respond-to(large-screens) {
|
|
|
|
|
max-width: calc(#{$large-screen} / 4 - 1.25px);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-06 22:43:07 +07:00
|
|
|
|
|
2020-12-25 19:38:32 +02:00
|
|
|
|
.menu-horizontal-scrollable {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
z-index: 1;
|
|
|
|
|
background-color: #fff;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
border-bottom: 1px solid #dadce0;
|
2020-10-26 02:09:42 +02:00
|
|
|
|
position: relative;
|
|
|
|
|
box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, .16);
|
2021-02-15 19:49:58 +04:00
|
|
|
|
top: unset;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
2020-06-20 04:11:24 +03:00
|
|
|
|
.scrollable {
|
|
|
|
|
position: relative;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-18 22:34:41 +04:00
|
|
|
|
.menu-horizontal-div {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
border-bottom: none;
|
2020-12-25 19:38:32 +02:00
|
|
|
|
position: relative !important;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
2021-01-18 22:34:41 +04:00
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
z-index: 0;
|
2020-06-20 04:11:24 +03:00
|
|
|
|
|
2021-01-18 22:34:41 +04:00
|
|
|
|
&-item {
|
2020-08-27 21:25:47 +03:00
|
|
|
|
height: 43px;
|
2020-09-23 23:29:53 +03:00
|
|
|
|
padding: 0 1rem;
|
2020-06-20 04:11:24 +03:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2020-08-27 21:25:47 +03:00
|
|
|
|
align-items: center;
|
2020-09-23 23:29:53 +03:00
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
min-width: 3rem;
|
2020-08-27 21:25:47 +03:00
|
|
|
|
|
2020-09-23 23:29:53 +03:00
|
|
|
|
> span {
|
2020-08-27 21:25:47 +03:00
|
|
|
|
overflow: visible;
|
|
|
|
|
|
|
|
|
|
i {
|
2021-01-18 22:34:41 +04:00
|
|
|
|
bottom: calc(-.6875rem);
|
2020-08-27 21:25:47 +03:00
|
|
|
|
padding-right: 1rem !important;
|
|
|
|
|
margin-left: -.5rem !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-20 04:11:24 +03:00
|
|
|
|
}
|
2020-06-21 15:25:17 +03:00
|
|
|
|
|
|
|
|
|
&__stripe {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2020-06-20 04:11:24 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-08 21:48:44 +02:00
|
|
|
|
.badge {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
margin-left: 5px;
|
2021-01-23 00:12:57 +02:00
|
|
|
|
//line-height: inherit !important;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
2020-06-21 15:25:17 +03:00
|
|
|
|
|
2020-10-30 16:10:59 +02:00
|
|
|
|
&:not(.hide) + .scrollable {
|
2020-06-21 15:25:17 +03:00
|
|
|
|
top: 44px;
|
|
|
|
|
height: calc(100% - 44px);
|
2020-10-30 16:10:59 +02:00
|
|
|
|
}
|
2020-02-06 22:43:07 +07:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-18 22:34:41 +04:00
|
|
|
|
.folders-tabs-scrollable .menu-horizontal-div-item:first-child {
|
2021-01-13 14:48:35 +04:00
|
|
|
|
margin-left: .6875rem;
|
2021-01-25 21:06:44 +02:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
margin-left: .1875rem;
|
|
|
|
|
}
|
2021-01-13 14:48:35 +04:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-25 19:38:32 +02:00
|
|
|
|
.item-main {
|
|
|
|
|
.input-search {
|
|
|
|
|
/* &-input {
|
|
|
|
|
--paddingLeft: 0px;
|
|
|
|
|
padding-left: calc(42px - var(--border-width) + var(--paddingLeft));
|
|
|
|
|
} */
|
|
|
|
|
|
|
|
|
|
.selector-user {
|
|
|
|
|
height: 30px;
|
|
|
|
|
position: absolute!important;
|
|
|
|
|
left: 5px;
|
|
|
|
|
top: 5px;
|
|
|
|
|
background: #f1f3f4;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.is-picked {
|
|
|
|
|
.input-search-input {
|
|
|
|
|
padding-left: calc(var(--paddingLeft) + 12px - var(--border-width));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tgico-close {
|
|
|
|
|
display: block !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.is-picked-twice {
|
|
|
|
|
.selector-user:first-of-type {
|
|
|
|
|
width: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.selector-user:last-of-type {
|
|
|
|
|
left: 38px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-helper {
|
|
|
|
|
display: flex;
|
2020-12-29 10:08:50 +02:00
|
|
|
|
margin-left: 28px;
|
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.selector-user {
|
|
|
|
|
margin-top: 7px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: rgba(80, 162, 233, .2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-avatar:after {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-super-tabs-scrollable {
|
2021-01-02 14:34:16 +04:00
|
|
|
|
position: relative !important;
|
2020-12-29 10:08:50 +02:00
|
|
|
|
|
2021-03-12 02:39:57 +04:00
|
|
|
|
&:before {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-18 22:34:41 +04:00
|
|
|
|
.menu-horizontal-div-item {
|
2021-01-02 14:34:16 +04:00
|
|
|
|
flex: 1 0 auto !important;
|
2020-12-29 10:08:50 +02:00
|
|
|
|
}
|
2020-12-25 19:38:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 17:38:36 +02:00
|
|
|
|
#chatlist-container {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
max-height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-31 19:48:46 +03:00
|
|
|
|
#folders-container {
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 04:03:31 +03:00
|
|
|
|
.sidebar-slider {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-15 22:20:38 +07:00
|
|
|
|
.sidebar-header__btn-container {
|
|
|
|
|
position: relative;
|
2021-02-15 19:49:58 +04:00
|
|
|
|
width: 2.5rem;
|
|
|
|
|
height: 2.5rem;
|
2021-01-11 19:21:03 +04:00
|
|
|
|
flex: 0 0 auto;
|
2021-02-15 19:49:58 +04:00
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2020-02-15 22:20:38 +07:00
|
|
|
|
|
2020-09-23 23:29:53 +03:00
|
|
|
|
> .btn-icon {
|
2020-02-15 22:20:38 +07:00
|
|
|
|
visibility: hidden;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
2021-02-15 19:49:58 +04:00
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
2020-09-23 23:29:53 +03:00
|
|
|
|
transition: .2s opacity, .15s background-color;
|
2020-02-15 22:20:38 +07:00
|
|
|
|
z-index: 2;
|
2021-02-15 19:49:58 +04:00
|
|
|
|
margin: 0;
|
2020-02-15 22:20:38 +07:00
|
|
|
|
|
2021-01-03 19:59:13 +04:00
|
|
|
|
body.animation-level-0 &, body.animation-level-0 &:before {
|
|
|
|
|
transition: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-18 20:05:33 +04:00
|
|
|
|
&.is-visible {
|
2020-04-20 00:40:00 +03:00
|
|
|
|
//margin-top: 1px;
|
2020-02-15 22:20:38 +07:00
|
|
|
|
opacity: 1;
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
|
|
|
|
.btn-menu {
|
|
|
|
|
@include respond-to(handhelds) {
|
2021-02-15 19:49:58 +04:00
|
|
|
|
margin-top: -.25rem;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-15 22:20:38 +07:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-14 23:15:41 +07:00
|
|
|
|
.sidebar-tools-button .btn-menu {
|
2021-01-19 16:19:50 +04:00
|
|
|
|
min-width: 217px;
|
2020-02-14 23:15:41 +07:00
|
|
|
|
|
|
|
|
|
.archived-count {
|
|
|
|
|
justify-self: flex-end;
|
2021-01-19 16:19:50 +04:00
|
|
|
|
margin-left: .625rem;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
2020-02-14 23:15:41 +07:00
|
|
|
|
}
|
2020-02-15 22:20:38 +07:00
|
|
|
|
|
2021-01-19 16:19:50 +04:00
|
|
|
|
.btn-menu-item {
|
|
|
|
|
padding-right: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-15 22:20:38 +07:00
|
|
|
|
.archived-count:empty {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2020-02-14 23:15:41 +07:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 04:03:31 +03:00
|
|
|
|
.search-group-people {
|
2021-03-19 16:14:42 +04:00
|
|
|
|
.chatlist {
|
2020-05-06 04:03:31 +03:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
padding-left: 4px;
|
|
|
|
|
margin-top: -1px;
|
|
|
|
|
padding-bottom: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
height: 98px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
max-width: 78px;
|
|
|
|
|
width: 78px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 12px 0 0 !important;
|
2021-03-19 16:14:42 +04:00
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
|
flex: 0 0 auto;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
width: 77px;
|
|
|
|
|
max-width: 77px;
|
|
|
|
|
}
|
2020-05-06 04:03:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-19 16:14:42 +04:00
|
|
|
|
.dialog-title-details, .dialog-subtitle {
|
2020-11-21 15:13:23 +02:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 04:03:31 +03:00
|
|
|
|
.user-caption {
|
|
|
|
|
max-width: 65px;
|
|
|
|
|
padding: 2px 0px 9px;
|
|
|
|
|
font-size: 12px;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
max-width: 56px;
|
|
|
|
|
}
|
2020-05-06 04:03:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-group-scrollable {
|
|
|
|
|
position: relative;
|
|
|
|
|
|
2020-06-21 15:25:17 +03:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
margin-left: -7px;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 04:03:31 +03:00
|
|
|
|
> .scrollable {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-09 15:02:07 +03:00
|
|
|
|
|
|
|
|
|
.item-main .sidebar-content {
|
|
|
|
|
.btn-menu {
|
|
|
|
|
bottom: calc(100% + 10px);
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-05 19:01:06 +03:00
|
|
|
|
.btn-corner {
|
|
|
|
|
&.menu-open:before {
|
|
|
|
|
content: $tgico-close;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-13 11:19:39 +03:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
width: 54px;
|
|
|
|
|
height: 54px;
|
|
|
|
|
bottom: 14px;
|
|
|
|
|
right: 14px;
|
2020-09-26 01:47:43 +03:00
|
|
|
|
|
|
|
|
|
position: fixed !important;
|
|
|
|
|
z-index: 1;
|
2020-10-10 20:19:04 +03:00
|
|
|
|
|
|
|
|
|
&:not(.is-hidden) {
|
|
|
|
|
transform: translateZ(0px);
|
|
|
|
|
}
|
2020-06-13 11:19:39 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-05 19:01:06 +03:00
|
|
|
|
@include respond-to(not-handhelds) {
|
2020-10-10 20:19:04 +03:00
|
|
|
|
html.no-touch &:hover .btn-corner:not(.is-hidden) {
|
|
|
|
|
transform: translateZ(0px);
|
2020-05-09 15:02:07 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-15 05:33:47 +02:00
|
|
|
|
|
|
|
|
|
.connection-status {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 .5rem .5rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
2020-11-15 23:14:05 +02:00
|
|
|
|
&:not(.is-shown) {
|
2020-11-15 05:33:47 +02:00
|
|
|
|
.connection-status-button {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-15 23:14:05 +02:00
|
|
|
|
&.is-shown {
|
2020-11-15 05:33:47 +02:00
|
|
|
|
&.animating {
|
|
|
|
|
.connection-status-button, & + .connection-status-bottom {
|
|
|
|
|
transition: transform var(--layer-transition);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:not(.backwards) {
|
|
|
|
|
.connection-status-button {
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& + .connection-status-bottom {
|
|
|
|
|
transform: translateY(64px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:not(.animating):not(.backwards) {
|
|
|
|
|
& + .connection-status-bottom {
|
|
|
|
|
height: calc(100% - 64px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-button {
|
|
|
|
|
color: #2e3939;
|
|
|
|
|
align-self: center;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
padding-left: 4.5rem;
|
|
|
|
|
text-align: left;
|
|
|
|
|
height: 3.5rem;
|
|
|
|
|
|
|
|
|
|
transform: translateY(-100%);
|
2021-01-18 22:34:41 +04:00
|
|
|
|
|
|
|
|
|
.preloader-container {
|
2020-11-15 05:33:47 +02:00
|
|
|
|
right: auto;
|
2021-01-18 22:34:41 +04:00
|
|
|
|
left: 1rem;
|
|
|
|
|
width: 1.5rem;
|
|
|
|
|
height: 1.5rem;
|
|
|
|
|
|
|
|
|
|
.preloader-path-new {
|
2020-11-15 05:33:47 +02:00
|
|
|
|
stroke: #2e3939;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-bottom {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
/* transform: translateY(64px);
|
|
|
|
|
height: calc(100% - 64px); */
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-01 23:44:31 +04:00
|
|
|
|
|
|
|
|
|
.input-wrapper {
|
|
|
|
|
width: 420px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
padding: 0 1.25rem;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-06 04:03:31 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-container {
|
|
|
|
|
display: flex;
|
2020-02-06 22:43:07 +07:00
|
|
|
|
}
|
2020-05-09 15:02:07 +03:00
|
|
|
|
|
2020-05-13 18:26:40 +03:00
|
|
|
|
.new-channel-container, .new-group-container, .edit-profile-container {
|
2020-05-09 15:02:07 +03:00
|
|
|
|
.sidebar-content {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 17:38:36 +02:00
|
|
|
|
.chatlist-container {
|
2020-05-09 15:02:07 +03:00
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.caption {
|
2020-05-13 18:26:40 +03:00
|
|
|
|
font-size: 0.875rem;
|
2020-05-09 15:02:07 +03:00
|
|
|
|
margin-top: 14px;
|
|
|
|
|
margin-left: 23px;
|
|
|
|
|
color: #707579;
|
2020-06-20 04:11:24 +03:00
|
|
|
|
padding-right: 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-25 22:07:00 +04:00
|
|
|
|
.new-group-container {
|
|
|
|
|
.search-group {
|
|
|
|
|
margin-top: .5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-20 04:11:24 +03:00
|
|
|
|
.edit-folder-container {
|
2021-01-01 23:44:31 +04:00
|
|
|
|
.folder-category-button:nth-child(n+2) {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
2020-05-09 15:02:07 +03:00
|
|
|
|
}
|
2020-05-13 18:26:40 +03:00
|
|
|
|
|
|
|
|
|
.new-group-members {
|
2021-01-03 14:59:12 +04:00
|
|
|
|
padding: 1.5rem 0 .4375rem;
|
2020-05-13 18:26:40 +03:00
|
|
|
|
|
|
|
|
|
.search-group__name {
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-container {
|
|
|
|
|
.profile {
|
|
|
|
|
&-button {
|
2020-06-19 14:49:55 +03:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
2020-05-13 18:26:40 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-buttons {
|
2021-01-03 14:59:12 +04:00
|
|
|
|
margin-top: 1.1875rem;
|
2020-05-13 18:26:40 +03:00
|
|
|
|
width: 100%;
|
2021-01-01 23:44:31 +04:00
|
|
|
|
padding: 0 .4375rem;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
2021-03-01 21:42:34 +04:00
|
|
|
|
margin-top: .6875rem;
|
2021-01-03 14:59:12 +04:00
|
|
|
|
padding: 0;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
2020-05-13 18:26:40 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.edit-profile-container {
|
|
|
|
|
.caption {
|
2021-03-17 19:21:42 +04:00
|
|
|
|
margin-top: 1.0625rem;
|
|
|
|
|
margin-left: 1.4375rem;
|
|
|
|
|
line-height: var(--line-height);
|
|
|
|
|
padding-bottom: 1.4375rem;
|
2020-06-20 04:11:24 +03:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding-right: 24px;
|
|
|
|
|
}
|
2020-05-13 18:26:40 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-left-h2 {
|
2021-03-17 19:21:42 +04:00
|
|
|
|
padding: 0 1.4375rem;
|
2020-05-13 18:26:40 +03:00
|
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hr {
|
2021-03-11 00:57:28 +04:00
|
|
|
|
margin-bottom: 1rem;
|
2020-05-13 18:26:40 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scroll-wrapper {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-folders-container, .edit-folder-container {
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
|
|
.sticker-container {
|
|
|
|
|
width: 86px;
|
|
|
|
|
height: 86px;
|
2020-06-20 04:11:24 +03:00
|
|
|
|
margin: 1px auto 29px;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
flex: 0 0 auto;
|
2020-11-27 21:14:26 +02:00
|
|
|
|
position: relative;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.caption {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #707579;
|
|
|
|
|
font-size: 14px;
|
2021-03-17 19:21:42 +04:00
|
|
|
|
line-height: var(--line-height);
|
2021-03-21 15:37:33 +04:00
|
|
|
|
max-width: 20rem;
|
|
|
|
|
margin: 0 auto;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
2021-03-11 00:57:28 +04:00
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
2021-03-11 00:57:28 +04:00
|
|
|
|
.edit-folder-container {
|
2020-06-19 14:49:55 +03:00
|
|
|
|
.sidebar-left-h2 {
|
2020-06-21 15:25:17 +03:00
|
|
|
|
padding: 7px 24px 15px 24px;
|
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding: 7px 16px 15px 16px;
|
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-folders-container {
|
2021-03-11 00:57:28 +04:00
|
|
|
|
.sidebar-left-section {
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* &-name {
|
|
|
|
|
padding-top: .5rem;
|
|
|
|
|
padding-bottom: .5rem;
|
|
|
|
|
} */
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-19 14:49:55 +03:00
|
|
|
|
.btn-primary {
|
2021-03-21 15:37:33 +04:00
|
|
|
|
width: auto;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
height: 40px;
|
|
|
|
|
align-items: center;
|
2021-03-11 00:57:28 +04:00
|
|
|
|
margin: 15px auto 1rem;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
border-radius: 30px;
|
2021-03-21 18:36:14 +04:00
|
|
|
|
padding: 0 24px 0 12px;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tgico-add:before {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-11 00:57:28 +04:00
|
|
|
|
.row {
|
2020-06-19 14:49:55 +03:00
|
|
|
|
.btn-primary {
|
|
|
|
|
height: 30px;
|
2021-03-21 18:36:14 +04:00
|
|
|
|
padding: 0 12px;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
font-size: 15px;
|
2021-03-21 18:36:14 +04:00
|
|
|
|
width: auto;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
transition: width 0.2s;
|
2021-03-11 00:57:28 +04:00
|
|
|
|
margin: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 1rem;
|
|
|
|
|
top: 50%;
|
|
|
|
|
transform: translateY(-50%);
|
2021-01-03 19:59:13 +04:00
|
|
|
|
|
|
|
|
|
body.animation-level-0 & {
|
|
|
|
|
transition: none;
|
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.edit-folder-container {
|
|
|
|
|
.caption {
|
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
.input-wrapper {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 16px;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-left-h2 {
|
2021-01-02 12:59:38 +04:00
|
|
|
|
padding: 21px 24px 8px;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
2020-09-23 23:29:53 +03:00
|
|
|
|
width: 100%;
|
2021-01-02 12:59:38 +04:00
|
|
|
|
padding: 21px 16px 8px;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-wrapper {
|
2021-01-01 23:44:31 +04:00
|
|
|
|
margin-bottom: 10px !important;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.folder-list {
|
|
|
|
|
li {
|
2021-03-19 16:14:42 +04:00
|
|
|
|
padding: 9px 11px;
|
|
|
|
|
height: 50px;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-caption {
|
2021-03-11 00:57:28 +04:00
|
|
|
|
padding: 3px 28px 6px;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p span {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.folder-categories {
|
|
|
|
|
width: 100%;
|
2020-06-20 04:11:24 +03:00
|
|
|
|
|
2021-01-20 05:38:59 +04:00
|
|
|
|
.checkbox-field {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
position: absolute;
|
2021-01-20 05:38:59 +04:00
|
|
|
|
right: 1.625rem !important;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
|
2021-01-20 05:38:59 +04:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
right: 1rem !important;
|
2020-06-20 04:11:24 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.folder-category-button {
|
|
|
|
|
display: flex;
|
2021-01-01 23:44:31 +04:00
|
|
|
|
padding: 0 1.5rem;
|
2020-09-23 23:29:53 +03:00
|
|
|
|
overflow: hidden;
|
2021-01-01 23:44:31 +04:00
|
|
|
|
height: 50px;
|
|
|
|
|
border-radius: 0;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
2021-01-20 05:38:59 +04:00
|
|
|
|
padding: 0 1.125rem;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
color: #797d82;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 17:38:36 +02:00
|
|
|
|
.popup-forward, .included-chatlist-container {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
.selector {
|
2021-03-19 16:14:42 +04:00
|
|
|
|
.chatlist {
|
|
|
|
|
li {
|
2021-01-20 05:38:59 +04:00
|
|
|
|
padding: 7px .75rem !important;
|
2021-03-11 00:57:28 +04:00
|
|
|
|
height: 3.75rem;
|
2020-06-20 04:11:24 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-caption {
|
|
|
|
|
padding: 0px 0px 0 14px;
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-07 00:20:30 +02:00
|
|
|
|
.user-last-message {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
font-size: 15px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
2020-10-21 02:25:36 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 17:38:36 +02:00
|
|
|
|
.included-chatlist-container {
|
2020-10-21 02:25:36 +03:00
|
|
|
|
.sidebar-left-h2 {
|
|
|
|
|
padding: 6px 24px 8px 24px;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
2020-10-21 02:25:36 +03:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding: 6px 16px 8px 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.selector {
|
|
|
|
|
ul {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
.checkbox {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
2020-10-18 02:19:56 +03:00
|
|
|
|
[type="checkbox"] + span {
|
2020-06-20 04:11:24 +03:00
|
|
|
|
padding-left: 26px;
|
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
2020-06-20 04:11:24 +03:00
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
2020-10-18 02:19:56 +03:00
|
|
|
|
.checkbox [type="checkbox"] {
|
|
|
|
|
& + span:after {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
height: 20px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
border-color: #dadbdc;
|
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
2020-10-18 02:19:56 +03:00
|
|
|
|
&:checked {
|
|
|
|
|
& + span {
|
|
|
|
|
&:before {
|
|
|
|
|
top: 5px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
|
background-color: #4EA4F6;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-20 04:11:24 +03:00
|
|
|
|
}
|
2020-06-19 14:49:55 +03:00
|
|
|
|
|
2020-06-20 04:11:24 +03:00
|
|
|
|
.folder-category-button {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-group-recent {
|
|
|
|
|
.search-group__name {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2020-06-19 14:49:55 +03:00
|
|
|
|
}
|
2020-06-21 15:25:17 +03:00
|
|
|
|
|
|
|
|
|
.btn-icon {
|
|
|
|
|
//@include respond-to(handhelds) {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 23:29:53 +03:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
li {
|
2021-03-19 16:14:42 +04:00
|
|
|
|
height: 62px;
|
|
|
|
|
padding-top: 7px;
|
|
|
|
|
padding-bottom: 7px;
|
2020-09-23 23:29:53 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-caption {
|
2020-06-21 15:25:17 +03:00
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-07 00:20:30 +02:00
|
|
|
|
.user-title {
|
|
|
|
|
font-weight: 500 !important;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 23:29:53 +03:00
|
|
|
|
.dialog-avatar {
|
2020-12-14 02:19:36 +02:00
|
|
|
|
--size: 46px;
|
|
|
|
|
--multiplier: 1.173913;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 23:29:53 +03:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
.search-group-recent.search-group.search-group-contacts ul {
|
2021-03-19 16:14:42 +04:00
|
|
|
|
margin-top: 0;
|
2020-06-21 15:25:17 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 23:29:53 +03:00
|
|
|
|
.search-group.search-group-contacts ul, .search-group.search-group-messages ul {
|
2020-06-21 15:25:17 +03:00
|
|
|
|
margin-top: 7px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 23:29:53 +03:00
|
|
|
|
.search-group.search-group-messages {
|
2020-06-21 15:25:17 +03:00
|
|
|
|
margin-top: -6px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 23:29:53 +03:00
|
|
|
|
@include respond-to(not-handhelds) {
|
|
|
|
|
.search-group-recent.search-group.search-group-contacts {
|
2020-06-21 15:25:17 +03:00
|
|
|
|
padding: 0px 0 7px;
|
|
|
|
|
}
|
2021-01-02 19:22:11 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-03 14:59:12 +04:00
|
|
|
|
.sidebar-left {
|
|
|
|
|
&-section {
|
|
|
|
|
padding: .5rem 0 1rem;
|
2021-03-11 22:50:48 +04:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding-bottom: .5rem;
|
|
|
|
|
}
|
2021-01-03 14:59:12 +04:00
|
|
|
|
|
2021-02-18 21:30:41 +04:00
|
|
|
|
&-content {
|
2021-03-11 22:50:48 +04:00
|
|
|
|
margin: 0 .5rem;
|
2021-01-03 14:59:12 +04:00
|
|
|
|
|
2021-03-11 22:50:48 +04:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
margin: 0 .25rem;
|
|
|
|
|
}
|
2021-02-19 19:27:56 +04:00
|
|
|
|
|
|
|
|
|
> .btn-primary {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
2021-03-17 19:21:42 +04:00
|
|
|
|
|
|
|
|
|
> .checkbox-field {
|
|
|
|
|
.checkbox-box {
|
|
|
|
|
left: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-03 14:59:12 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-name {
|
2021-03-01 21:42:34 +04:00
|
|
|
|
padding: 1rem;
|
2021-03-11 00:57:28 +04:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding: .5rem 1rem;
|
|
|
|
|
font-size: .875rem;
|
|
|
|
|
}
|
2021-01-03 14:59:12 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-06 13:16:53 +04:00
|
|
|
|
&-caption {
|
|
|
|
|
margin-top: 1rem;
|
2021-03-11 22:50:48 +04:00
|
|
|
|
font-size: 1rem;
|
2021-01-06 13:16:53 +04:00
|
|
|
|
color: #707579;
|
2021-03-17 19:21:42 +04:00
|
|
|
|
line-height: var(--line-height);
|
2021-03-01 21:42:34 +04:00
|
|
|
|
padding: 0 1rem;
|
2021-03-11 00:57:28 +04:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
margin: .5rem;
|
|
|
|
|
font-size: .875rem;
|
|
|
|
|
}
|
2021-01-06 13:16:53 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-19 19:27:56 +04:00
|
|
|
|
.checkbox-field, .radio-field {
|
2021-01-03 14:59:12 +04:00
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-01 19:17:15 +04:00
|
|
|
|
&:first-child:not(.no-delimiter) {
|
2021-01-03 14:59:12 +04:00
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
2021-01-02 19:22:11 +04:00
|
|
|
|
|
2021-01-03 14:59:12 +04:00
|
|
|
|
.checkbox-field {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2021-03-17 17:05:32 +04:00
|
|
|
|
height: 3.5rem;
|
2021-03-17 19:21:42 +04:00
|
|
|
|
padding: 0 1.1875rem;
|
2021-01-03 14:59:12 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-01 05:07:44 +02:00
|
|
|
|
&-disabled {
|
|
|
|
|
pointer-events: none !important;
|
|
|
|
|
opacity: .25;
|
|
|
|
|
}
|
2021-02-18 21:30:41 +04:00
|
|
|
|
|
|
|
|
|
.media-sticker-wrapper {
|
|
|
|
|
width: 86px;
|
|
|
|
|
height: 86px;
|
|
|
|
|
margin: 1px auto 29px;
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
2021-01-02 19:22:11 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-03 14:59:12 +04:00
|
|
|
|
&-h2 {
|
2021-01-02 19:22:11 +04:00
|
|
|
|
color: #707579;
|
2021-01-03 14:59:12 +04:00
|
|
|
|
font-size: 16px;
|
2021-01-02 19:22:11 +04:00
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-03 14:59:12 +04:00
|
|
|
|
.general-settings-container {
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-18 21:30:41 +04:00
|
|
|
|
.two-step-verification {
|
2021-03-01 19:17:15 +04:00
|
|
|
|
.sidebar-left-section { // * main tab verified with mockup
|
|
|
|
|
&:first-child { // ! refactor is needed
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-caption {
|
|
|
|
|
text-align: center;
|
|
|
|
|
max-width: 342px;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
margin-bottom: 1.125rem;
|
|
|
|
|
}
|
2021-02-20 21:10:26 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-27 23:01:25 +04:00
|
|
|
|
&-main {
|
|
|
|
|
.btn-primary + .btn-primary {
|
|
|
|
|
margin-top: .125rem !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-30 19:31:11 +04:00
|
|
|
|
.btn-primary:not(.btn-transparent) {
|
|
|
|
|
text-transform: uppercase;
|
2021-02-20 21:10:26 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-18 21:30:41 +04:00
|
|
|
|
.media-sticker-wrapper {
|
|
|
|
|
width: 168px;
|
|
|
|
|
height: 168px;
|
2021-02-20 21:10:26 +04:00
|
|
|
|
margin: .625rem auto 1.1875rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-wrapper .btn-primary:first-child:last-child {
|
|
|
|
|
margin-top: .25rem;
|
2021-02-18 21:30:41 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-20 13:07:52 +04:00
|
|
|
|
&-enter-password {
|
|
|
|
|
.media-sticker-wrapper {
|
2021-02-20 21:10:26 +04:00
|
|
|
|
margin: 1.125rem auto 1.8125rem;
|
2021-02-20 13:07:52 +04:00
|
|
|
|
width: 157px;
|
|
|
|
|
height: 157px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-hint {
|
|
|
|
|
.media-sticker-wrapper {
|
2021-02-20 21:10:26 +04:00
|
|
|
|
width: 160px;
|
|
|
|
|
height: 160px;
|
|
|
|
|
margin: .5rem auto 2.25rem;
|
2021-02-20 13:07:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-email {
|
|
|
|
|
.media-sticker-wrapper {
|
2021-02-20 21:10:26 +04:00
|
|
|
|
width: 160px;
|
|
|
|
|
height: 160px;
|
|
|
|
|
margin: .5625rem auto 2.1875rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-set {
|
|
|
|
|
.media-sticker-wrapper {
|
|
|
|
|
width: 160px;
|
|
|
|
|
height: 160px;
|
|
|
|
|
margin: 1rem auto 1.3125rem;
|
|
|
|
|
|
|
|
|
|
.rlottie, .rlottie-vector {
|
|
|
|
|
left: .625rem;
|
|
|
|
|
}
|
2021-02-20 13:07:52 +04:00
|
|
|
|
}
|
2021-02-19 19:27:56 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-01 19:17:15 +04:00
|
|
|
|
.privacy-container {
|
2021-03-01 21:42:34 +04:00
|
|
|
|
.sidebar-left-section.no-delimiter {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
padding-top: .75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-left-section:last-child {
|
|
|
|
|
padding-top: .4375rem;
|
2021-03-01 19:17:15 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* .privacy-navigation-container {
|
|
|
|
|
.sidebar-left-section-name + .row {
|
|
|
|
|
margin-top: -5px; // ! just to match mockup.
|
|
|
|
|
}
|
|
|
|
|
} */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.privacy-tab {
|
|
|
|
|
// * just to match mockup
|
2021-03-11 22:50:48 +04:00
|
|
|
|
@include respond-to(not-handhelds) {
|
|
|
|
|
.sidebar-left-section:first-child {
|
|
|
|
|
padding-bottom: 1.125rem;
|
|
|
|
|
}
|
2021-03-01 19:17:15 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
form {
|
2021-03-01 21:42:34 +04:00
|
|
|
|
padding-bottom: .0625rem;
|
2021-03-01 19:17:15 +04:00
|
|
|
|
}
|
2021-03-01 21:42:34 +04:00
|
|
|
|
}
|
2021-03-01 19:17:15 +04:00
|
|
|
|
|
2021-03-01 21:42:34 +04:00
|
|
|
|
.active-sessions-container {
|
|
|
|
|
.row {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
padding-top: 1rem;
|
|
|
|
|
padding-bottom: .9375rem;
|
|
|
|
|
|
|
|
|
|
&-title-row {
|
|
|
|
|
align-items: flex-end;
|
2021-03-01 19:17:15 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 22:49:35 +04:00
|
|
|
|
&-title:first-child {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-01 21:42:34 +04:00
|
|
|
|
&-title-right {
|
|
|
|
|
font-size: .75rem;
|
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
}
|
2021-03-01 23:49:36 +04:00
|
|
|
|
|
|
|
|
|
&-midtitle, &-subtitle {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
2021-03-01 21:42:34 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-left-section:first-child {
|
|
|
|
|
padding-bottom: 0;
|
2021-03-17 19:21:42 +04:00
|
|
|
|
|
|
|
|
|
.row-title {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
2021-03-01 19:17:15 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 19:34:02 +04:00
|
|
|
|
.blocked-users-container {
|
2021-03-19 16:14:42 +04:00
|
|
|
|
li {
|
2021-03-10 23:59:38 +04:00
|
|
|
|
height: 66px;
|
2021-03-19 16:14:42 +04:00
|
|
|
|
padding-top: 9px;
|
|
|
|
|
padding-bottom: 9px;
|
|
|
|
|
|
|
|
|
|
border-radius: $border-radius-medium;
|
2021-03-10 23:59:38 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-caption {
|
|
|
|
|
padding-left: .75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dialog-subtitle {
|
|
|
|
|
margin-top: -.375rem;
|
|
|
|
|
font-size: .875rem;
|
|
|
|
|
}
|
2021-03-11 00:57:28 +04:00
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
margin-top: .3125rem;
|
2021-03-19 16:14:42 +04:00
|
|
|
|
padding: 0 .6875rem;
|
2021-03-11 00:57:28 +04:00
|
|
|
|
}
|
2021-03-02 19:34:02 +04:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-09 02:15:44 +04:00
|
|
|
|
.notifications-container {
|
|
|
|
|
.sidebar-left-section {
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-02 19:22:11 +04:00
|
|
|
|
.range-setting-selector {
|
2021-01-03 14:59:12 +04:00
|
|
|
|
padding: 1rem .875rem;
|
|
|
|
|
|
2021-01-02 19:22:11 +04:00
|
|
|
|
&-details {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2021-01-03 14:59:12 +04:00
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-value {
|
|
|
|
|
color: #707579;
|
2021-01-02 19:22:11 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-line {
|
|
|
|
|
--height: 2px;
|
|
|
|
|
--border-radius: 4px;
|
|
|
|
|
background-color: #e6ecf0;
|
|
|
|
|
|
|
|
|
|
&__filled {
|
|
|
|
|
background-color: #3390ec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__seek {
|
|
|
|
|
--thumb-color: #3390ec;
|
|
|
|
|
--thumb-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-31 03:52:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.background-container {
|
|
|
|
|
.grid {
|
|
|
|
|
padding: 0 .5rem;
|
|
|
|
|
|
|
|
|
|
&-item {
|
|
|
|
|
&:after {
|
|
|
|
|
content: " ";
|
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
border: 3px solid $color-blue;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity .2s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
&:after {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.grid-item-media {
|
|
|
|
|
transform: scale(.91);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-media {
|
|
|
|
|
transition: transform .2s ease-in-out;
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|