60 lines
959 B
SCSS
60 lines
959 B
SCSS
#accept-friend-request-dialog {
|
|
width:500px;
|
|
min-height:100px;
|
|
height:auto;
|
|
line-height:normal;
|
|
|
|
.dialog-inner {
|
|
color:white;
|
|
}
|
|
|
|
.accept-friend-msg, .generic-error-msg {
|
|
margin-top:20px;
|
|
}
|
|
|
|
.generic-error-msg {
|
|
text-align:center;
|
|
margin-left:-60px;
|
|
}
|
|
|
|
.sender-msg {
|
|
color:#aaa;
|
|
margin-top:10px;
|
|
}
|
|
.dialog-content-scroller {
|
|
position:relative;
|
|
display:block;
|
|
overflow:auto;
|
|
max-height:250px;
|
|
padding-left:60px;
|
|
}
|
|
|
|
.avatar-small {
|
|
position:absolute;
|
|
left:0;
|
|
padding:1px;
|
|
width:36px;
|
|
height:36px;
|
|
background-color:#ed3618;
|
|
margin:10px;
|
|
-webkit-border-radius:18px;
|
|
-moz-border-radius:18px;
|
|
border-radius:18px;
|
|
}
|
|
|
|
.avatar-small img {
|
|
width: 36px;
|
|
height: 36px;
|
|
-webkit-border-radius:18px;
|
|
-moz-border-radius:18px;
|
|
border-radius:18px;
|
|
}
|
|
|
|
.action-buttons {
|
|
margin-bottom:10px;
|
|
}
|
|
|
|
.sender {
|
|
margin-top:20px;
|
|
}
|
|
} |