overleaf/services/web/frontend/stylesheets/app/editor/online-users.less
Alf Eaton 3e70992924 Merge pull request #6122 from overleaf/jel-online-users
Fix multiple online users color for light theme

GitOrigin-RevId: 008bbe8b968512dacc07b7be9d5d49f237d73368
2021-12-15 09:04:07 +00:00

43 lines
821 B
Text

.online-users {
display: flex;
.online-user {
width: 24px;
display: inline-block;
height: 24px;
margin-right: 8px;
text-align: center;
color: white;
text-transform: uppercase;
border-radius: 3px;
cursor: pointer;
}
.online-user-multi {
color: @toolbar-btn-color;
width: auto;
min-width: 24px;
padding-left: 8px;
padding-right: 5px;
display: flex;
align-items: center;
}
.dropdown-menu {
margin-right: 8px;
a {
// Override toolbar link styles
display: block;
padding: 4px 10px 5px;
margin: 1px 2px;
color: @text-color;
&:hover,
&:active {
color: @text-color!important;
background-color: @gray-lightest;
text-shadow: none;
.box-shadow(none);
}
}
}
}