2018-05-03 14:13:59 -05:00
|
|
|
// We should try to reuse the user page HTML for groups when possible
|
|
|
|
// To style group content differently, use the existing classes with a .group parent class.
|
2018-06-08 04:49:31 -05:00
|
|
|
// For example: .group .user-navigation
|
2018-05-03 14:13:59 -05:00
|
|
|
|
2016-12-05 02:18:24 -06:00
|
|
|
.group-details-container {
|
2018-05-03 14:13:59 -05:00
|
|
|
background: $primary-very-low;
|
2016-12-05 02:18:24 -06:00
|
|
|
padding: 20px;
|
2016-12-21 23:07:30 -06:00
|
|
|
margin-bottom: 15px;
|
2018-03-29 01:57:10 -05:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group-outlet {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-04-12 20:16:51 -05:00
|
|
|
.group-members-actions {
|
2018-05-08 09:08:31 -05:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
width: 100%;
|
2018-04-12 20:16:51 -05:00
|
|
|
|
2018-05-08 11:27:25 -05:00
|
|
|
input + .group-members-manage {
|
2018-05-08 09:08:31 -05:00
|
|
|
margin-left: auto;
|
2018-04-12 20:16:51 -05:00
|
|
|
}
|
|
|
|
|
2018-05-08 09:08:31 -05:00
|
|
|
.group-username-filter {
|
|
|
|
margin: 0 0 5px 0;
|
2018-04-12 20:16:51 -05:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2016-12-15 00:17:04 -06:00
|
|
|
}
|
|
|
|
|
2016-12-14 22:07:22 -06:00
|
|
|
.group-info {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.group-info-name {
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-up-3;
|
2016-12-14 22:07:22 -06:00
|
|
|
font-weight: bold;
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
|
|
|
|
.group-info-full-name {
|
2018-01-12 16:27:38 -06:00
|
|
|
font-size: $font-up-2;
|
2017-10-10 15:07:46 -05:00
|
|
|
color: dark-light-choose($primary-high, $secondary-low);
|
2016-12-14 22:07:22 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
span {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2016-12-22 00:30:49 -06:00
|
|
|
$size: 50px;
|
|
|
|
|
|
|
|
.avatar-flair-image {
|
|
|
|
width: $size;
|
|
|
|
}
|
2016-12-14 22:07:22 -06:00
|
|
|
|
2016-12-22 00:30:49 -06:00
|
|
|
.avatar-flair {
|
2016-12-14 22:07:22 -06:00
|
|
|
background-size: $size;
|
|
|
|
height: $size;
|
2018-11-28 15:02:49 -06:00
|
|
|
width: $size;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2016-12-14 22:07:22 -06:00
|
|
|
|
2018-11-26 15:49:57 -06:00
|
|
|
.d-icon {
|
2018-11-28 15:02:49 -06:00
|
|
|
height: $size / 1.8;
|
|
|
|
width: $size / 1.8;
|
2016-12-14 22:07:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-26 23:18:03 -05:00
|
|
|
.group-manage-logs-filter {
|
2016-12-11 09:36:15 -06:00
|
|
|
margin-right: 10px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $danger;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-26 23:18:03 -05:00
|
|
|
table.group-manage-logs {
|
2016-12-11 09:36:15 -06:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
th {
|
|
|
|
text-align: left;
|
2018-01-25 08:53:36 -06:00
|
|
|
padding: 5px 0;
|
2016-12-11 09:36:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
2018-01-25 08:53:36 -06:00
|
|
|
padding: 10px 0;
|
2016-12-11 09:36:15 -06:00
|
|
|
}
|
|
|
|
|
2018-03-26 23:18:03 -05:00
|
|
|
.group-manage-logs-expand-details {
|
2016-12-11 09:36:15 -06:00
|
|
|
cursor: pointer;
|
|
|
|
|
2018-11-26 15:49:57 -06:00
|
|
|
.d-icon {
|
2017-06-11 21:20:14 -05:00
|
|
|
color: blend-primary-secondary(50%);
|
2016-12-11 09:36:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-30 02:11:02 -06:00
|
|
|
table.group-members {
|
|
|
|
width: 100%;
|
2016-12-07 03:28:43 -06:00
|
|
|
table-layout: fixed;
|
2016-11-30 02:11:02 -06:00
|
|
|
|
2016-12-07 03:28:43 -06:00
|
|
|
th:first-child {
|
2018-03-29 01:57:10 -05:00
|
|
|
width: 30%;
|
2016-12-13 01:15:20 -06:00
|
|
|
text-align: left;
|
2016-12-07 03:28:43 -06:00
|
|
|
}
|
|
|
|
|
2018-03-21 05:16:08 -05:00
|
|
|
th:last-child {
|
|
|
|
width: 5%;
|
|
|
|
}
|
|
|
|
|
2016-12-13 01:15:20 -06:00
|
|
|
th.group-members-actions {
|
2016-12-07 03:28:43 -06:00
|
|
|
width: 5%;
|
|
|
|
}
|
|
|
|
|
2016-11-30 02:11:02 -06:00
|
|
|
th {
|
2016-12-13 01:15:20 -06:00
|
|
|
text-align: center;
|
2018-01-25 08:53:36 -06:00
|
|
|
padding: 5px 0 5px 5px;
|
2017-10-10 15:07:46 -05:00
|
|
|
color: dark-light-choose($primary-medium, $secondary-medium);
|
2016-12-12 23:11:34 -06:00
|
|
|
font-weight: normal;
|
2016-12-13 01:15:20 -06:00
|
|
|
}
|
2016-12-07 03:28:43 -06:00
|
|
|
|
2016-12-13 01:15:20 -06:00
|
|
|
th.sortable {
|
2018-11-26 15:49:57 -06:00
|
|
|
.d-icon {
|
2016-12-07 03:28:43 -06:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
2017-08-24 12:05:53 -05:00
|
|
|
background-color: $primary-low;
|
2016-12-07 03:28:43 -06:00
|
|
|
}
|
2016-11-30 02:11:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
.user-info {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2016-12-13 01:15:20 -06:00
|
|
|
td:first-child {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2016-11-30 02:11:02 -06:00
|
|
|
td {
|
2016-12-13 01:15:20 -06:00
|
|
|
text-align: center;
|
2018-05-03 14:13:59 -05:00
|
|
|
color: $primary-medium;
|
2016-11-30 02:11:02 -06:00
|
|
|
padding: 0.8em 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.group-owner-label {
|
|
|
|
color: $primary;
|
|
|
|
}
|
|
|
|
|
2018-04-05 22:36:57 -05:00
|
|
|
.form-vertical {
|
2016-11-30 02:11:02 -06:00
|
|
|
.group-flair-inputs {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.avatar-flair-preview {
|
|
|
|
position: relative;
|
|
|
|
width: 45px;
|
|
|
|
|
|
|
|
.avatar-wrapper {
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-29 01:57:10 -05:00
|
|
|
.group-form-save {
|
|
|
|
margin-right: 20px;
|
2016-12-07 00:42:58 -06:00
|
|
|
}
|
2018-03-26 01:30:37 -05:00
|
|
|
|
2018-04-05 22:36:57 -05:00
|
|
|
.group-add-members {
|
|
|
|
.group-add-members-make-owner {
|
2018-03-26 04:33:03 -05:00
|
|
|
label {
|
|
|
|
display: inline;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2018-06-08 04:49:31 -05:00
|
|
|
input[type="checkbox"] {
|
2018-03-26 04:33:03 -05:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|
2018-03-26 01:30:37 -05:00
|
|
|
}
|