1
0
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:
lavigor
2018-06-01 17:59:31 +03:00
committed by Marc Alexander
parent eec7703d3b
commit a176be4c1d
9 changed files with 82 additions and 13 deletions

View File

@@ -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
---------------------------------------- */

View File

@@ -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;

View File

@@ -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 {