WebRTC audio/video call and conferencing server.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

198 lines
3.8 KiB

/*
* Spreed Speak Freely.
* Copyright (C) 2013-2014 struktur AG
*
* This file is part of Spreed Speak Freely.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#buddylist {
bottom: 0;
position: absolute;
right: 0;
top: 0;
width: 285px;
z-index: 50;
}
#buddylist:before {
background: $componentbg;
border-left: 1px solid $bordercolor;
border-top: 1px solid $bordercolor;
border-bottom: 1px solid $bordercolor;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
bottom: 0;
color: rgba(0,0,0,0.3);
content: "\f100";
cursor: pointer;
display: none;
font-family: FontAwesome;
font-size: 1.8em;
height: 55px;
left: 0;
line-height: 55px;
margin: auto;
pointer-events: auto;
position: absolute;
text-align: center;
top: 0;
width: 25px;
}
.withBuddylist #buddylist:before {
content: "\f101";
}
.withBuddylistAutoHide #buddylist:before {
display: block;
}
.buddylist {
background: $componentbg;
border-top: 1px solid $bordercolor;
bottom: 0;
left: 25px;
overflow-x: hidden;
overflow-y: auto;
pointer-events: auto;
position: absolute;
right: 0;
top: 0;
}
.buddylist {
&.loading {
.buddylistloading {
display:block;
}
}
&.empty {
.buddylistempty {
display:block;
}
}
.buddycontainer {
pointer-events: auto;
position: relative;
user-select: none;
}
.buddylistloading,
.buddylistempty {
bottom: 0;
color: rgba(0,0,0,.3);
display: none;
font-size: 1.4em;
height: 2em;
left: 0;
margin: auto;
padding:.4em;
position: absolute;
right: 0;
text-align: center;
top: 0;
}
}
.buddy {
background: $sidepanebg;
border-bottom: 1px solid $bordercolor;
cursor: pointer;
display: block;
font-size: 13px;
height: 66px;
overflow: hidden;
position: relative;
text-align: left;
width: 100%;
@include tap-highlight-color(rgba(0, 0, 0, 0));
}
.buddy:hover {
background: $componentbg;
}
.buddy {
&.withSubline > .buddy1 {
top: 15px;
}
&.hovered .buddyactions {
right: 0;
}
> .buddyimage {
background: $actioncolor1;
border-radius: 2px;
float: left;
height: 46px;
margin: 10px;
overflow: hidden;
position: relative;
text-align: center;
width: 46px;
> i {
color: $actioncolor2;
line-height: 46px;
}
> img {
bottom: 0;
display: block;
left: 0;
position: absolute;
right: 0;
top: 0;
}
}
> .buddy1 {
color: $componentfg1;
font-weight: bold;
font-size: 14px;
height: 28px;
left: 65px;
position: absolute;
overflow: hidden;
right: 4px;
text-overflow: ellipsis;
top: 24px;
white-space: nowrap;
}
> .buddy2 {
color: $componentfg2;
left: 65px;
overflow: hidden;
position: absolute;
right: 0px;
top: 33px;
white-space: nowrap;
}
}
.buddy .buddyactions {
background: rgba(255,255,255,0.5);
bottom: 0px;
line-height: 66px;
position: absolute;
right: -125px;
padding: 0 10px;
text-align: right;
top: 0px;
transition-property: right;
transition-duration: .3s;
white-space: nowrap;
z-index: 5;
i {
font-size: 2em;
}
}