ComunicWeb/assets/css/components/friends/listModal.css

48 lines
867 B
CSS
Raw Normal View History

2018-03-07 16:53:26 +00:00
/**
* Friends list modal stylesheet
*
* @author Pierre HUBERT
2018-03-07 18:31:29 +00:00
*/
.friends-list-ro .friend {
display: inline-block;
width: 170px;
max-width: 100%;
margin: 5px;
}
2018-03-11 08:56:42 +00:00
.personnal-friends-list .friend a,
2018-03-07 18:31:29 +00:00
.friends-list-ro .friend a {
color: white;
}
2018-03-11 08:56:42 +00:00
.personnal-friends-list .friend a:hover,
2018-03-07 18:31:29 +00:00
.friends-list-ro .friend a:hover {
color: #001F3F;
}
2018-03-11 08:56:42 +00:00
.personnal-friends-list .friend img,
2018-03-07 18:31:29 +00:00
.friends-list-ro .friend img {
margin: auto 10px auto auto;
max-width: 40px;
height: 40px;
border-radius: 50%;
visibility: visible;
}
2018-03-11 08:56:42 +00:00
.personnal-friends-list .friend .friends-name,
2018-03-07 18:31:29 +00:00
.friends-list-ro .friend .friends-name {
display: inline-block;
white-space: normal;
max-width: 100px;
text-align: left;
vertical-align: middle;
2018-03-11 08:56:42 +00:00
}
.personnal-friends-list .friend {
margin-bottom: 10px;
}
.personnal-friends-list .friend .friends-name {
width: 200px;
max-width: 200px;
2018-03-07 18:31:29 +00:00
}