jiti-meet/css/_contact_list.scss

52 lines
908 B
SCSS
Raw Normal View History

#contacts_container {
2016-09-02 09:53:22 +00:00
cursor: default;
> ul#contacts {
font-size: 12px;
2016-09-02 09:53:22 +00:00
bottom: 0px;
margin: 0px;
padding: 0px;
width: 100%;
2016-09-02 09:53:22 +00:00
overflow-y: scroll;
overflow-x: hidden;
}
.clickable {
cursor: pointer;
}
}
#contacts {
>li {
color: $defaultSideBarFontColor;
2016-09-02 09:53:22 +00:00
list-style-type: none;
text-align: left;
white-space: nowrap;
2016-09-02 09:53:22 +00:00
color: #FFF;
font-size: 10pt;
padding: 6px 10%;
2016-09-02 09:53:22 +00:00
2016-09-10 02:26:29 +00:00
&:hover,
&:active {
background: $toolbarSelectBackground;
}
2016-09-02 09:53:22 +00:00
> p {
display: inline-block;
vertical-align: middle;
margin: 0px;
}
}
}
.avatar {
padding: 0px;
margin-right: 10px;
vertical-align: middle;
font-size: 22pt;
border-radius: 20px;
max-height: 30px;
max-width: 30px;
}