2016-09-08 22:34:16 +00:00
|
|
|
#contacts_container {
|
2016-09-02 09:53:22 +00:00
|
|
|
cursor: default;
|
|
|
|
|
2017-08-30 23:17:55 +00:00
|
|
|
#contacts {
|
2016-09-20 06:14:00 +00:00
|
|
|
font-size: 12px;
|
2016-09-02 09:53:22 +00:00
|
|
|
bottom: 0px;
|
2016-10-12 00:08:24 +00:00
|
|
|
margin: 0;
|
2016-11-10 16:48:34 +00:00
|
|
|
margin-top: 12px;
|
2016-09-02 09:53:22 +00:00
|
|
|
padding: 0px;
|
2016-09-20 06:14:00 +00:00
|
|
|
width: 100%;
|
2016-09-02 09:53:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.clickable {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#contacts {
|
2017-08-30 23:17:55 +00:00
|
|
|
.contact-list-item {
|
2017-08-30 20:53:12 +00:00
|
|
|
align-items: center;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: $baseLight;
|
|
|
|
display: flex;
|
|
|
|
font-size: 14px;
|
|
|
|
height: 36px;
|
2016-09-02 09:53:22 +00:00
|
|
|
list-style-type: none;
|
2017-08-30 20:53:12 +00:00
|
|
|
padding: 0 10%;
|
2016-09-02 09:53:22 +00:00
|
|
|
text-align: left;
|
2016-09-08 18:22:50 +00:00
|
|
|
white-space: nowrap;
|
2016-09-02 09:53:22 +00:00
|
|
|
|
2016-09-10 02:26:29 +00:00
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
background: $toolbarSelectBackground;
|
|
|
|
}
|
|
|
|
|
2017-08-30 23:17:55 +00:00
|
|
|
.contact-list-item-name {
|
2016-10-17 21:53:16 +00:00
|
|
|
overflow: hidden;
|
2017-08-30 20:53:12 +00:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
cursor: pointer;
|
|
|
|
height: 24px;
|
|
|
|
margin: 0 8px 0 4px;
|
|
|
|
width: 24px;
|
2016-09-02 09:53:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
padding: 0px;
|
|
|
|
margin-right: 10px;
|
|
|
|
vertical-align: middle;
|
|
|
|
font-size: 22pt;
|
|
|
|
border-radius: 20px;
|
|
|
|
max-height: 30px;
|
|
|
|
max-width: 30px;
|
2017-08-30 23:17:55 +00:00
|
|
|
}
|