* Use crayons-indicator--critical class when rendering Required note * Add a bit of padding to the site-config label to give button room
128 lines
1.9 KiB
SCSS
128 lines
1.9 KiB
SCSS
@import 'config/import';
|
|
@import 'crayons';
|
|
@import 'variables';
|
|
@import 'scaffolds';
|
|
|
|
// overriding Bootstrap styles
|
|
label {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
.pagination {
|
|
justify-content: right;
|
|
|
|
.page,
|
|
.next,
|
|
.last,
|
|
.first,
|
|
.prev {
|
|
padding: 8px;
|
|
}
|
|
}
|
|
|
|
.bg-featured {
|
|
background: #bbffd2;
|
|
}
|
|
|
|
.bg-approved {
|
|
background: #92e8ae;
|
|
border: 12px solid #ff9900;
|
|
}
|
|
|
|
.bg-highlighted {
|
|
background: #2effa8 !important;
|
|
border: 20px solid black;
|
|
}
|
|
|
|
.border-highlighted {
|
|
border: 20px solid black;
|
|
}
|
|
|
|
.broadcast-wrapper {
|
|
display: flex;
|
|
position: relative;
|
|
z-index: auto;
|
|
}
|
|
|
|
.site-config__required {
|
|
background: #dc3545;
|
|
border-radius: 19px;
|
|
padding: 5px 15px;
|
|
color: white;
|
|
text-align: right;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.site-config__label {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-bottom: var(--su-2);
|
|
}
|
|
|
|
.profile__group-toggle {
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
color: grey;
|
|
margin: 1em 0;
|
|
text-align: end;
|
|
}
|
|
|
|
#profileFields {
|
|
.card-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.card-header__actions {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.card-header__information {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.group__description {
|
|
color: $medium-gray;
|
|
width: 150px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.card-header__actions > div {
|
|
margin: 0 16px;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.admin-navigation-links {
|
|
width: 240px;
|
|
}
|
|
|
|
.admin-navigation-links .crayons-icon svg {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.config-authentication__item {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
grid-column-gap: var(--su-4);
|
|
margin-bottom: var(--su-6);
|
|
|
|
&--icon,
|
|
&--label {
|
|
padding-top: var(--su-4);
|
|
padding-bottom: var(--su-4);
|
|
}
|
|
}
|
|
|
|
.config-authentication-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--su-4);
|
|
}
|