Files
astuto/app/assets/stylesheets/components/SiteSettings/Users/index.scss
Riccardo Graziosi a11157295d Various improvements (#325)
* Fix missing translation in roadmap
* Fix resizing of textareas
* Increase line height for small muted texts
* Improve collapsed board list style
* Fix switch on top of header (z-index)
* Fix margin inconsistencies in site settings
* Add user count to site settings
2024-04-10 23:28:58 +02:00

56 lines
849 B
SCSS

.userCount {
text-transform: lowercase;
}
ul.usersList {
@extend
.pl-1;
list-style: none;
li.userEditable {
@extend
.d-flex,
.justify-content-between,
.my-2,
.p-3;
.userGravatar {
@extend .mr-3, .align-self-center;
}
.userFullName {
font-size: 18px;
}
.userInfo {
@extend .d-flex;
.userFullNameRoleStatus {
@extend
.d-flex,
.flex-column;
}
}
.userEditableActions {
@extend .d-flex, .align-self-center;
}
.userForm {
@extend .d-flex;
.userFullNameRoleForm {
@extend .d-flex, .flex-column;
}
}
.updateUserButton {
@extend .align-self-center;
margin-left: 16px;
}
.userStatusblocked { color: orange; }
.userStatusdeleted { color: red; }
}
}