discourse/app/assets/stylesheets/common/base/group.scss

119 lines
1.6 KiB
SCSS
Raw Normal View History

.group-header {
font-size: 2.142em;
font-weight: normal;
}
2016-12-05 03:18:24 -05:00
.group-details-container {
2016-12-05 03:53:58 -05:00
background: rgba(230, 230, 230, 0.3);
2016-12-05 03:18:24 -05:00
padding: 20px;
2016-12-05 03:53:58 -05:00
margin-bottom: 30px;
2016-12-05 03:18:24 -05:00
}
table.group-members {
width: 100%;
th, tr {
border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
}
th {
text-align: left;
}
tr {
.user-info {
display: block;
}
td {
color: dark-light-diff($primary, $secondary, 50%, -50%);
padding: 0.8em 0;
}
}
}
.group-owner-label {
color: $primary;
}
2016-12-05 03:53:58 -05:00
.group-details {
width: 100%;
}
.group-header, .group-details {
display: table;
span {
display: table-cell;
vertical-align: middle;
}
.avatar-flair {
$size: 40px;
background-size: $size;
height: $size;
width: $size;
i {
font-size: $size !important;
}
}
}
.group-edit-btn {
margin-left: 5px;
2016-12-05 03:53:58 -05:00
float: right;
}
2016-12-05 03:18:24 -05:00
.groups.edit-group .form-horizontal {
textarea {
width: 99%;
}
label {
font-weight: bold;
}
input[type="text"] {
width: 80% !important;
margin-bottom: 10px;
}
.group-flair-inputs {
display: inline-block;
margin-top: 30px;
margin-bottom: 30px;
.group-flair-left {
float: left;
}
.group-flair-right {
float: left;
margin-left: 30px;
}
}
.avatar-flair-preview {
position: relative;
width: 45px;
.avatar-wrapper {
background-color: #f4f4f4;
}
}
}
#add-user-to-group {
2016-12-05 03:53:58 -05:00
margin: 0px;
.ac-wrap {
width: 100% !important;
}
.add {
margin-top: 10px;
}
}