mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
48 lines
1.0 KiB
SCSS
48 lines
1.0 KiB
SCSS
#red-ui-multiplayer-user-list {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
margin: 0 5px;
|
|
li {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
width: 30px;
|
|
margin: 0 2px;
|
|
}
|
|
|
|
}
|
|
|
|
.red-ui-multiplayer-user-icon {
|
|
background: var(--red-ui-header-background);
|
|
border: 2px solid var(--red-ui-header-menu-color);
|
|
border-radius: 30px;
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 28px;
|
|
height: 28px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
text-decoration: none;
|
|
color: var(--red-ui-header-menu-color);
|
|
padding: 0px;
|
|
margin: 0px;
|
|
vertical-align: middle;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.red-ui-multiplayer-user.inactive & {
|
|
opacity: 0.5;
|
|
}
|
|
.user-profile {
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 28px;
|
|
height: 28px;
|
|
}
|
|
} |