mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
* add prettier and have it format all js code except website: : * trying running prettier check in CI * fix runs on in CI * change CI job name * fix prettier erros and fix CI
67 lines
1.1 KiB
SCSS
67 lines
1.1 KiB
SCSS
.user-row {
|
|
&__actions {
|
|
.form-field--dropdown {
|
|
margin-bottom: 0;
|
|
|
|
.Select-placeholder {
|
|
font-size: $x-small;
|
|
}
|
|
|
|
.Select-input {
|
|
font-size: $x-small;
|
|
}
|
|
|
|
.Select-menu {
|
|
max-height: 220px;
|
|
|
|
&-outer {
|
|
width: 186px;
|
|
transform: translateX(-33%);
|
|
max-height: 220px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@include breakpoint(smalldesk) {
|
|
&__position {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&__status--active {
|
|
&:before {
|
|
background-color: $success;
|
|
border-radius: 100%;
|
|
content: " ";
|
|
display: inline-block;
|
|
height: 8px;
|
|
margin-right: 8px;
|
|
width: 8px;
|
|
}
|
|
}
|
|
|
|
&__status--invited {
|
|
&:before {
|
|
background-color: $warning;
|
|
border-radius: 100%;
|
|
content: " ";
|
|
display: inline-block;
|
|
height: 8px;
|
|
margin-right: 8px;
|
|
width: 8px;
|
|
}
|
|
}
|
|
|
|
&__status--disabled {
|
|
&:before {
|
|
background-color: $core-red;
|
|
border-radius: 100%;
|
|
content: " ";
|
|
display: inline-block;
|
|
height: 8px;
|
|
margin-right: 8px;
|
|
width: 8px;
|
|
}
|
|
}
|
|
}
|