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