2017-05-31 17:05:19 +00:00
|
|
|
/**
|
|
|
|
* Friends bar style sheet
|
|
|
|
*
|
|
|
|
* @author Pierre HUBERT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#friendsList {
|
|
|
|
position: fixed;
|
|
|
|
right: 0px;
|
|
|
|
border-left: 1px black solid;
|
|
|
|
z-index: 999;
|
|
|
|
background-color: #fff3ff80;
|
|
|
|
top: 0px;
|
|
|
|
height: 100%;
|
2017-05-31 17:17:31 +00:00
|
|
|
width: 50px;
|
2017-05-31 17:05:19 +00:00
|
|
|
transition: width 1s;
|
2017-05-31 17:17:31 +00:00
|
|
|
font-size: 70%;
|
2017-05-31 19:03:08 +00:00
|
|
|
padding-top: 50px;
|
2017-05-31 17:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#friendsList:hover {
|
|
|
|
width: 230px;
|
|
|
|
background-color: #ffffff;
|
2017-05-31 17:17:31 +00:00
|
|
|
font-size: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
padding-top: 50px;
|
2017-05-31 17:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#friendsList td {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
#friendsList .account-image {
|
|
|
|
margin: auto 10px auto auto;
|
2017-05-31 17:17:31 +00:00
|
|
|
max-width: 40px;
|
2017-05-31 17:05:19 +00:00
|
|
|
height: 40px;
|
|
|
|
border-radius: 50%;
|
2017-05-31 17:17:31 +00:00
|
|
|
visibility: visible
|
2017-05-31 17:05:19 +00:00
|
|
|
}
|