2018-07-12 19:13:04 +02:00
|
|
|
@import (reference) '../../customize/src/less2/include/framework.less';
|
2018-09-06 18:41:22 +02:00
|
|
|
@import (reference) '../../customize/src/less2/include/messenger.less';
|
2019-12-13 18:22:14 +01:00
|
|
|
@import (reference) '../../customize/src/less2/include/avatar.less';
|
2019-12-13 18:43:30 +01:00
|
|
|
@import (reference) '../../customize/src/less2/include/buttons.less';
|
2017-09-18 15:09:01 +02:00
|
|
|
|
|
|
|
|
// body
|
|
|
|
|
&.cp-app-contacts {
|
2018-07-14 15:15:23 +02:00
|
|
|
.framework_min_main(
|
|
|
|
|
@bg-color: @colortheme_friends-bg,
|
|
|
|
|
@warn-color: @colortheme_friends-warn,
|
|
|
|
|
@color: @colortheme_friends-color
|
|
|
|
|
);
|
|
|
|
|
|
2017-09-18 15:09:01 +02:00
|
|
|
display: flex;
|
|
|
|
|
flex-flow: column;
|
|
|
|
|
|
|
|
|
|
|
2017-10-19 09:58:28 +02:00
|
|
|
#cp-toolbar {
|
2017-09-18 15:09:01 +02:00
|
|
|
display: flex; // We need this to remove a 3px border at the bottom of the toolbar
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-13 18:43:30 +01:00
|
|
|
.cp-app-contacts-friends {
|
|
|
|
|
.buttons_main();
|
|
|
|
|
}
|
2019-12-13 18:22:14 +01:00
|
|
|
.cp-contacts-muted-table {
|
|
|
|
|
.avatar_main(50px);
|
|
|
|
|
.cp-contacts-muted-user {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
span:nth-child(2) {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-13 18:43:30 +01:00
|
|
|
|
|
|
|
|
|
2018-09-06 18:41:22 +02:00
|
|
|
.messenger_main();
|
2017-09-18 15:09:01 +02:00
|
|
|
}
|
|
|
|
|
|