mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 19:24:01 +02:00
[ticket/13713] Implement avatars
PHPBB3-13713
This commit is contained in:
@@ -930,6 +930,17 @@
|
||||
float: left;
|
||||
}
|
||||
|
||||
/* Mention dropdown */
|
||||
.atwho-container .atwho-view ul li {
|
||||
padding-right: 45px;
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
.mention-avatar {
|
||||
right: 8px;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
/* Search box
|
||||
---------------------------------------- */
|
||||
|
||||
|
@@ -983,6 +983,18 @@ fieldset.fields2 dl:hover dt label {
|
||||
outline-color: rgba(19, 164, 236, 0.5);
|
||||
}
|
||||
|
||||
.atwho-container .atwho-view ul li:hover,
|
||||
.atwho-container .atwho-view ul li.cur {
|
||||
background-color: #0077b3;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.mention-avatar {
|
||||
background-color: #0077b3;
|
||||
border-color: #ffffff;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/* input field styles */
|
||||
.inputbox {
|
||||
background-color: #ffffff;
|
||||
|
@@ -284,6 +284,33 @@ fieldset.submit-buttons input {
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
/* Mention dropdown */
|
||||
.atwho-container .atwho-view {
|
||||
font-size: 12px;
|
||||
min-width: 300px;
|
||||
}
|
||||
|
||||
.atwho-container .atwho-view ul li {
|
||||
position: relative;
|
||||
padding: 15px 5px 15px 45px;
|
||||
}
|
||||
|
||||
.mention-avatar {
|
||||
font-size: 14px;
|
||||
line-height: 30px;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
border: 1px solid transparent;
|
||||
border-radius: 100%;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 8px;
|
||||
display: inline-block;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin-top: -15px;
|
||||
}
|
||||
|
||||
/* Input field styles
|
||||
---------------------------------------- */
|
||||
.inputbox {
|
||||
|
Reference in New Issue
Block a user