mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
acf6ed6fe1
Ensure alignment is consistent regardless of whether showing user picture or auto-generated one based on their initials.
31 lines
687 B
CSS
31 lines
687 B
CSS
.block_online_users .content .list li.listentry {
|
|
clear: both;
|
|
}
|
|
|
|
.block_online_users .content .list li.listentry:not(:first-child) {
|
|
padding-top: 3px;
|
|
}
|
|
|
|
.block_online_users .content .list li.listentry .user {
|
|
float: left;
|
|
position: relative;
|
|
}
|
|
|
|
.block_online_users .content .list li.listentry .otherusers {
|
|
margin-left: 1.5rem;
|
|
}
|
|
|
|
.block_online_users .content .list li.listentry .user .userpicture {
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
.block_online_users .content .list li.listentry .message,
|
|
.block_online_users .content .list li.listentry .uservisibility {
|
|
float: right;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.block_online_users .content .info {
|
|
text-align: center;
|
|
}
|