2020-04-24 00:48:48 +00:00
|
|
|
|
#column-left {
|
2020-06-05 16:01:06 +00:00
|
|
|
|
//display: flex;
|
2020-02-06 15:43:07 +00:00
|
|
|
|
flex-direction: column;
|
2020-09-23 20:29:53 +00:00
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 18rem;
|
|
|
|
|
// ! -.5 because of border-left and border-right on whole page
|
|
|
|
|
max-width: calc(#{$large-screen} / 4);
|
|
|
|
|
|
2020-09-25 22:47:43 +00:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@include respond-to(floating-left-sidebar) {
|
|
|
|
|
display: flex;
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
2020-10-30 22:39:36 +00:00
|
|
|
|
/* height: calc(var(--vh, 1vh) * 100);
|
|
|
|
|
min-height: calc(var(--vh, 1vh) * 100) !important; */
|
2020-09-25 22:47:43 +00:00
|
|
|
|
width: 26.5rem;
|
|
|
|
|
transform: translate3d(-5rem, 0, 0);
|
|
|
|
|
transition: transform var(--layer-transition);
|
|
|
|
|
|
|
|
|
|
body.is-left-column-shown & {
|
|
|
|
|
transform: translateZ(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@include respond-to(no-floating-left-sidebar) {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 20:29:53 +00: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 15:43:07 +00:00
|
|
|
|
|
2020-06-20 01:11:24 +00:00
|
|
|
|
.folders-tabs-scrollable {
|
|
|
|
|
z-index: 1;
|
|
|
|
|
background-color: #fff;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
border-bottom: 1px solid #dadce0;
|
2020-10-26 00:09:42 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
box-shadow: 0px 1px 5px -1px rgba(0, 0, 0, .16);
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
2020-06-20 01:11:24 +00:00
|
|
|
|
.scrollable {
|
|
|
|
|
position: relative;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.menu-horizontal {
|
2020-06-20 01:11:24 +00:00
|
|
|
|
border-bottom: none;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
|
|
|
|
ul {
|
2020-11-06 22:20:30 +00:00
|
|
|
|
justify-content: start;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
z-index: 0;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
2020-06-20 01:11:24 +00:00
|
|
|
|
|
|
|
|
|
li {
|
2020-08-27 18:25:47 +00:00
|
|
|
|
height: 43px;
|
2020-09-23 20:29:53 +00:00
|
|
|
|
padding: 0 1rem;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2020-08-27 18:25:47 +00:00
|
|
|
|
align-items: center;
|
2020-09-23 20:29:53 +00:00
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
min-width: 3rem;
|
2020-08-27 18:25:47 +00:00
|
|
|
|
|
2020-09-23 20:29:53 +00:00
|
|
|
|
> span {
|
2020-08-27 18:25:47 +00:00
|
|
|
|
overflow: visible;
|
|
|
|
|
|
|
|
|
|
i {
|
2020-11-25 19:36:18 +00:00
|
|
|
|
bottom: calc(-.625rem - -1.75px); // * 1.75px will fix for high DPR
|
2020-08-27 18:25:47 +00:00
|
|
|
|
padding-right: 1rem !important;
|
|
|
|
|
margin-left: -.5rem !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-20 01:11:24 +00:00
|
|
|
|
}
|
2020-06-21 12:25:17 +00:00
|
|
|
|
|
|
|
|
|
&__stripe {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2020-06-20 01:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-08 19:48:44 +00:00
|
|
|
|
.badge {
|
2020-06-20 01:11:24 +00:00
|
|
|
|
margin-left: 5px;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
2020-06-21 12:25:17 +00:00
|
|
|
|
|
2020-10-30 14:10:59 +00:00
|
|
|
|
&:not(.hide) + .scrollable {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
top: 44px;
|
|
|
|
|
height: calc(100% - 44px);
|
2020-10-30 14:10:59 +00:00
|
|
|
|
}
|
2020-02-06 15:43:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 15:38:36 +00:00
|
|
|
|
#chatlist-container {
|
2020-06-20 01:11:24 +00:00
|
|
|
|
max-height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-31 16:48:46 +00:00
|
|
|
|
#folders-container {
|
|
|
|
|
min-height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 01:03:31 +00:00
|
|
|
|
.sidebar-slider {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-15 15:20:38 +00:00
|
|
|
|
.sidebar-header__btn-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 39.75px;
|
|
|
|
|
height: 39px;
|
|
|
|
|
|
2020-09-23 20:29:53 +00:00
|
|
|
|
> .btn-icon {
|
2020-02-15 15:20:38 +00:00
|
|
|
|
visibility: hidden;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
2020-09-23 20:29:53 +00:00
|
|
|
|
transition: .2s opacity, .15s background-color;
|
2020-02-15 15:20:38 +00:00
|
|
|
|
z-index: 2;
|
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
transition: .2s transform;
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& + * {
|
|
|
|
|
margin-left: 0!important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.active {
|
2020-04-19 21:40:00 +00:00
|
|
|
|
//margin-top: 1px;
|
2020-02-15 15:20:38 +00:00
|
|
|
|
opacity: 1;
|
|
|
|
|
visibility: visible;
|
|
|
|
|
color: #707579;
|
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
|
|
|
|
.btn-menu {
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
margin-top: -4px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-15 15:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-14 16:15:41 +00:00
|
|
|
|
.sidebar-tools-button .btn-menu {
|
|
|
|
|
width: 217px;
|
|
|
|
|
|
|
|
|
|
.archived-count {
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
min-width: 24px;
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
background-color: #c5c9cc;
|
|
|
|
|
justify-self: flex-end;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 16px;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
2020-02-14 16:15:41 +00:00
|
|
|
|
}
|
2020-02-15 15:20:38 +00:00
|
|
|
|
|
|
|
|
|
.archived-count:empty {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2020-02-14 16:15:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 01:03:31 +00:00
|
|
|
|
.search-group-people {
|
|
|
|
|
ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
padding-left: 4px;
|
|
|
|
|
margin-top: -1px;
|
|
|
|
|
padding-bottom: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rp {
|
|
|
|
|
height: 98px;
|
|
|
|
|
max-height: 98px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
max-width: 78px;
|
|
|
|
|
width: 78px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 12px 0 0 !important;
|
|
|
|
|
margin: 0;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
width: 77px;
|
|
|
|
|
max-width: 77px;
|
|
|
|
|
}
|
2020-05-06 01:03:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-21 13:13:23 +00:00
|
|
|
|
.dialog-title-details {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 01:03:31 +00:00
|
|
|
|
.user-caption {
|
|
|
|
|
max-width: 65px;
|
|
|
|
|
padding: 2px 0px 9px;
|
|
|
|
|
font-size: 12px;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
max-width: 56px;
|
|
|
|
|
}
|
2020-05-06 01:03:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-group-scrollable {
|
|
|
|
|
position: relative;
|
|
|
|
|
|
2020-06-21 12:25:17 +00:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
margin-left: -7px;
|
|
|
|
|
margin-top: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 01:03:31 +00:00
|
|
|
|
> .scrollable {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-09 12:02:07 +00:00
|
|
|
|
|
|
|
|
|
.item-main .sidebar-content {
|
|
|
|
|
.btn-menu {
|
|
|
|
|
bottom: calc(100% + 10px);
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-05 16:01:06 +00:00
|
|
|
|
.btn-corner {
|
|
|
|
|
&.menu-open:before {
|
|
|
|
|
content: $tgico-close;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-13 08:19:39 +00:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
width: 54px;
|
|
|
|
|
height: 54px;
|
|
|
|
|
bottom: 14px;
|
|
|
|
|
right: 14px;
|
2020-09-25 22:47:43 +00:00
|
|
|
|
|
|
|
|
|
position: fixed !important;
|
|
|
|
|
z-index: 1;
|
2020-10-10 17:19:04 +00:00
|
|
|
|
|
|
|
|
|
&:not(.is-hidden) {
|
|
|
|
|
transform: translateZ(0px);
|
|
|
|
|
}
|
2020-06-13 08:19:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-05 16:01:06 +00:00
|
|
|
|
@include respond-to(not-handhelds) {
|
2020-10-10 17:19:04 +00:00
|
|
|
|
html.no-touch &:hover .btn-corner:not(.is-hidden) {
|
|
|
|
|
transform: translateZ(0px);
|
2020-05-09 12:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-15 03:33:47 +00:00
|
|
|
|
|
|
|
|
|
.connection-status {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 .5rem .5rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
2020-11-15 21:14:05 +00:00
|
|
|
|
&:not(.is-shown) {
|
2020-11-15 03:33:47 +00:00
|
|
|
|
.connection-status-button {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-15 21:14:05 +00:00
|
|
|
|
&.is-shown {
|
2020-11-15 03:33:47 +00: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%);
|
|
|
|
|
|
|
|
|
|
svg {
|
|
|
|
|
right: auto;
|
|
|
|
|
left: 15px;
|
|
|
|
|
height: calc(100% - 30px);
|
|
|
|
|
|
|
|
|
|
.preloader-path {
|
|
|
|
|
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); */
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-06 01:03:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#search-container {
|
|
|
|
|
display: flex;
|
2020-02-06 15:43:07 +00:00
|
|
|
|
}
|
2020-05-09 12:02:07 +00:00
|
|
|
|
|
2020-05-13 15:26:40 +00:00
|
|
|
|
.new-channel-container, .new-group-container, .edit-profile-container {
|
2020-05-09 12:02:07 +00:00
|
|
|
|
.sidebar-content {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-edit {
|
|
|
|
|
width: 120px;
|
|
|
|
|
height: 120px;
|
|
|
|
|
margin: 1px auto 32px;
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-wrapper {
|
2020-10-16 10:48:32 +00:00
|
|
|
|
width: 420px;
|
2020-05-09 12:02:07 +00:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
flex: 0 0 auto;
|
2020-10-16 10:48:32 +00:00
|
|
|
|
padding: 0 1.25rem;
|
|
|
|
|
max-width: 100%;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
}
|
2020-05-09 12:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 15:38:36 +00:00
|
|
|
|
.chatlist-container {
|
2020-05-09 12:02:07 +00:00
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.caption {
|
2020-05-13 15:26:40 +00:00
|
|
|
|
font-size: 0.875rem;
|
2020-05-09 12:02:07 +00:00
|
|
|
|
margin-top: 14px;
|
|
|
|
|
margin-left: 23px;
|
|
|
|
|
color: #707579;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
padding-right: 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.edit-folder-container {
|
|
|
|
|
.input-wrapper {
|
|
|
|
|
width: 380px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
flex: 0 0 auto;
|
2020-05-09 12:02:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-13 15:26:40 +00:00
|
|
|
|
|
|
|
|
|
.new-group-members {
|
|
|
|
|
padding: 1.5rem 0 0.4375rem;
|
|
|
|
|
|
|
|
|
|
.search-group__name {
|
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.settings-container {
|
|
|
|
|
.profile {
|
|
|
|
|
&-button {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 1.125rem 0.625rem;
|
|
|
|
|
height: 3.5rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
border-radius: 0.625rem;
|
|
|
|
|
margin: 0px 0.5rem 0px 0.4375rem;
|
2020-09-23 20:29:53 +00:00
|
|
|
|
overflow: hidden;
|
2020-05-13 15:26:40 +00:00
|
|
|
|
|
2020-06-19 11:49:55 +00:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding: 0.75rem 0.625rem;
|
|
|
|
|
height: 48px;
|
|
|
|
|
margin: 0 0 2px 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-05 16:01:06 +00:00
|
|
|
|
html.no-touch &:hover {
|
2020-09-28 00:23:00 +00:00
|
|
|
|
background: var(--color-gray-hover);
|
2020-05-13 15:26:40 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
color: #707579;
|
|
|
|
|
margin-left: 0.375rem;
|
|
|
|
|
margin-top: -0.0625rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
padding-left: 2rem;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-buttons {
|
|
|
|
|
margin-top: .9375rem;
|
|
|
|
|
width: 100%;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
margin-top: 0.6875rem;
|
|
|
|
|
}
|
2020-05-13 15:26:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.edit-profile-container {
|
|
|
|
|
.caption {
|
|
|
|
|
margin-top: 1.063rem;
|
|
|
|
|
margin-left: 1.438rem;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
padding-bottom: 1.438rem;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding-right: 24px;
|
|
|
|
|
}
|
2020-05-13 15:26:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-left-h2 {
|
|
|
|
|
color: #707579;
|
|
|
|
|
padding: 0 1.438rem;
|
|
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hr {
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scroll-wrapper {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-folders-container, .edit-folder-container {
|
|
|
|
|
user-select: none;
|
|
|
|
|
|
|
|
|
|
.sticker-container {
|
|
|
|
|
width: 86px;
|
|
|
|
|
height: 86px;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
margin: 1px auto 29px;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
flex: 0 0 auto;
|
2020-11-27 19:14:26 +00:00
|
|
|
|
position: relative;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.caption {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #707579;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-left-h2 {
|
|
|
|
|
color: #707579;
|
|
|
|
|
font-size: 15px;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
// padding-top: 7px;
|
|
|
|
|
// padding-bottom: 15px;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
padding: 7px 24px 15px 24px;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
font-weight: 500;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding: 7px 16px 15px 16px;
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chat-folders-container {
|
|
|
|
|
.btn-primary {
|
|
|
|
|
width: 160px;
|
|
|
|
|
height: 40px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin: 15px auto 24px;
|
|
|
|
|
border-radius: 30px;
|
|
|
|
|
padding: 0 12px;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tgico-add:before {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-20 01:11:24 +00:00
|
|
|
|
// .folders-container {
|
|
|
|
|
// padding: 0 16px;
|
|
|
|
|
// }
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
|
|
|
|
.category {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
padding: 7px 24px 11px 24px;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
display: flex;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
//padding-bottom: 11px;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
justify-content: space-between;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
position: relative;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
margin-bottom: 10px;
|
2020-09-23 20:29:53 +00:00
|
|
|
|
overflow: hidden;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
|
2020-06-21 12:25:17 +00:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding: 7px 16px 11px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-20 01:11:24 +00:00
|
|
|
|
p {
|
|
|
|
|
height: unset;
|
2020-12-18 16:43:17 +00:00
|
|
|
|
justify-content: start;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
|
|
|
|
p:last-child {
|
|
|
|
|
color: #707579;
|
|
|
|
|
font-size: 14px;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
line-height: 20px;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-primary {
|
|
|
|
|
height: 30px;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
width: 52px;
|
|
|
|
|
transition: width 0.2s;
|
|
|
|
|
margin: 5px 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.edit-folder-container {
|
|
|
|
|
.caption {
|
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
.input-wrapper {
|
2020-06-20 01:11:24 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0 16px;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-left-h2 {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
padding: 21px 24px 8px 24px;
|
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
2020-09-23 20:29:53 +00:00
|
|
|
|
width: 100%;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
padding: 21px 16px 8px 16px;
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-wrapper {
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.folder-list {
|
|
|
|
|
li {
|
|
|
|
|
padding-bottom: 2px;
|
|
|
|
|
|
|
|
|
|
.rp {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
padding: 8px 11px !important;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
height: 48px !important;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding: 8px 12px !important;
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-caption {
|
|
|
|
|
padding: 6px 28px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p span {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.folder-categories {
|
|
|
|
|
width: 100%;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
|
|
|
|
|
.checkbox {
|
2020-11-09 02:23:01 +00:00
|
|
|
|
margin-top: -9px !important;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
right: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
2020-11-06 22:20:30 +00:00
|
|
|
|
[type="checkbox"] + span {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
padding-left: 46px;
|
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding-left: 38px;
|
|
|
|
|
}
|
2020-06-20 01:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-08 19:48:44 +00:00
|
|
|
|
|
|
|
|
|
.checkbox-field {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.folder-category-button {
|
|
|
|
|
display: flex;
|
|
|
|
|
font-size: 1.5rem;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
padding: 13px 24px 10px 24px;
|
2020-09-23 20:29:53 +00:00
|
|
|
|
overflow: hidden;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding: 13px 16px 10px 16px;
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
user-select: none;
|
|
|
|
|
margin-left: 32px;
|
|
|
|
|
font-size: 16px;
|
2020-06-20 01:11:24 +00:00
|
|
|
|
flex: 1 1 auto;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.blue, &.blue:before {
|
|
|
|
|
color: #50a2e9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
color: #797d82;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-header .tgico-check1 {
|
|
|
|
|
color: #50a2e9;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 15:38:36 +00:00
|
|
|
|
.popup-forward, .included-chatlist-container {
|
2020-06-20 01:11:24 +00:00
|
|
|
|
.selector {
|
|
|
|
|
ul {
|
|
|
|
|
li > .rp {
|
2020-10-28 16:11:57 +00:00
|
|
|
|
margin: 0 .5rem;
|
|
|
|
|
padding: .5rem .75rem;
|
|
|
|
|
height: 3.875rem;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
|
|
|
|
|
@include respond-to(handhelds) {
|
2020-10-28 16:11:57 +00:00
|
|
|
|
margin: 0;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
}
|
2020-06-20 01:11:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-caption {
|
|
|
|
|
padding: 0px 0px 0 14px;
|
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-06 22:20:30 +00:00
|
|
|
|
.user-last-message {
|
2020-06-20 01:11:24 +00:00
|
|
|
|
font-size: 15px;
|
|
|
|
|
margin-top: 2px;
|
|
|
|
|
}
|
2020-10-20 23:25:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-01 15:38:36 +00:00
|
|
|
|
.included-chatlist-container {
|
2020-10-20 23:25:36 +00:00
|
|
|
|
.sidebar-left-h2 {
|
|
|
|
|
color: #707579;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
padding: 6px 24px 8px 24px;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
2020-10-20 23:25:36 +00:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
padding: 6px 16px 8px 16px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.selector {
|
|
|
|
|
ul {
|
2020-06-20 01:11:24 +00:00
|
|
|
|
.checkbox {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
2020-10-17 23:19:56 +00:00
|
|
|
|
[type="checkbox"] + span {
|
2020-06-20 01:11:24 +00:00
|
|
|
|
padding-left: 26px;
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
2020-06-20 01:11:24 +00:00
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
2020-10-17 23:19:56 +00:00
|
|
|
|
.checkbox [type="checkbox"] {
|
|
|
|
|
& + span:after {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
height: 20px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
border-color: #dadbdc;
|
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
2020-10-17 23:19:56 +00:00
|
|
|
|
&:checked {
|
|
|
|
|
& + span {
|
|
|
|
|
&:before {
|
|
|
|
|
top: 5px;
|
|
|
|
|
left: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
|
background-color: #4EA4F6;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-20 01:11:24 +00:00
|
|
|
|
}
|
2020-06-19 11:49:55 +00:00
|
|
|
|
|
2020-06-20 01:11:24 +00:00
|
|
|
|
.folder-category-button {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.search-group-recent {
|
|
|
|
|
.search-group__name {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2020-06-19 11:49:55 +00:00
|
|
|
|
}
|
2020-06-21 12:25:17 +00:00
|
|
|
|
|
|
|
|
|
.btn-icon {
|
|
|
|
|
//@include respond-to(handhelds) {
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
//}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 20:29:53 +00:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
li {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-caption {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-06 22:20:30 +00:00
|
|
|
|
.user-title {
|
|
|
|
|
font-weight: 500 !important;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 20:29:53 +00:00
|
|
|
|
.dialog-avatar {
|
2020-12-14 00:19:36 +00:00
|
|
|
|
--size: 46px;
|
|
|
|
|
--multiplier: 1.173913;
|
2020-06-21 12:25:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 20:29:53 +00:00
|
|
|
|
li > .rp {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
height: 62px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 20:29:53 +00:00
|
|
|
|
@include respond-to(handhelds) {
|
|
|
|
|
.search-group-recent.search-group.search-group-contacts ul {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
margin-top: -2px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 20:29:53 +00:00
|
|
|
|
.search-group.search-group-contacts ul, .search-group.search-group-messages ul {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
margin-top: 7px;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 20:29:53 +00:00
|
|
|
|
.search-group.search-group-messages {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
margin-top: -6px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 20:29:53 +00:00
|
|
|
|
@include respond-to(not-handhelds) {
|
|
|
|
|
.search-group-recent.search-group.search-group-contacts {
|
2020-06-21 12:25:17 +00:00
|
|
|
|
padding: 0px 0 7px;
|
|
|
|
|
}
|
2020-05-13 15:26:40 +00:00
|
|
|
|
}
|