jiti-meet/css/_contact_list.scss

60 lines
1.1 KiB
SCSS
Raw Normal View History

#contacts_container {
2016-09-02 09:53:22 +00:00
cursor: default;
#contacts {
font-size: 12px;
2016-09-02 09:53:22 +00:00
bottom: 0px;
margin: 0;
2016-11-10 16:48:34 +00:00
margin-top: 12px;
2016-09-02 09:53:22 +00:00
padding: 0px;
width: 100%;
2016-09-02 09:53:22 +00:00
}
.clickable {
cursor: pointer;
}
}
#contacts {
.contact-list-item {
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;
padding: 0 10%;
2016-09-02 09:53:22 +00:00
text-align: left;
white-space: nowrap;
2016-09-02 09:53:22 +00:00
2016-09-10 02:26:29 +00:00
&:hover,
&:active {
background: $toolbarSelectBackground;
}
.contact-list-item-name {
2016-10-17 21:53:16 +00:00
overflow: hidden;
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;
}