discourse/app/assets/stylesheets/desktop/group.scss
Martin Brennan 6bf97a47a7
FEATURE: Add last updated details to SMTP/IMAP group settings UI (#13396)
Adds the last updated at and by SMTP/IMAP fields to the UI, we were already storing them in the DB. Also makes sure that `imap_mailbox_name` being changed makes the last_updated_at/by field update for IMAP.
2021-06-17 08:21:06 +10:00

56 lines
802 B
SCSS

.group-nav {
.group-dropdown {
margin-right: 10px;
}
}
.group-navigation {
width: 15%;
background-color: transparent;
li {
border: none;
a {
color: var(--primary-med-or-secondary-high);
padding: 8px 0;
&.active {
background-color: transparent;
font-weight: bold;
color: var(--primary);
&:after {
display: none;
}
}
}
}
}
.group-activity-outlet,
.group-messages-outlet,
.group-manage-outlet {
width: 85%;
}
.group-manage {
.form-horizontal {
button {
float: none;
}
}
}
.groups-form.groups-notifications-form {
width: 500px;
max-width: 100%;
}
.group-smtp-email-settings,
.group-imap-email-settings {
.group-email-last-updated-details {
text-align: right;
}
}