mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
8b3ffe58fa
[web] BS5 IDE light header GitOrigin-RevId: 39403afae76f267228fb286492ad50e8e88e31be
37 lines
711 B
SCSS
37 lines
711 B
SCSS
:root {
|
|
--toolbar-btn-color: var(--white);
|
|
}
|
|
|
|
@include theme('light') {
|
|
--toolbar-btn-color: var(--neutral-70);
|
|
}
|
|
|
|
.online-users {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.online-user {
|
|
display: inline-block;
|
|
width: 24px;
|
|
height: 24px;
|
|
line-height: 24px;
|
|
margin-right: var(--spacing-04);
|
|
text-align: center;
|
|
color: white;
|
|
text-transform: uppercase;
|
|
border-radius: var(--border-radius-base);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.online-user-multi {
|
|
@include reset-button;
|
|
|
|
color: var(--toolbar-btn-color);
|
|
width: auto;
|
|
min-width: 24px;
|
|
padding-left: var(--spacing-04);
|
|
padding-right: var(--spacing-03);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|