mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
b61b33c0fa
in a topic.
383 lines
6.1 KiB
SCSS
383 lines
6.1 KiB
SCSS
// styles that apply to the user page
|
|
@import "common/foundation/variables";
|
|
@import "common/foundation/mixins";
|
|
|
|
.groups {
|
|
.group-link {
|
|
color: $tertiary_lightest;
|
|
}
|
|
}
|
|
|
|
.user-preferences {
|
|
input.category-group {
|
|
width: 500px;
|
|
}
|
|
|
|
.autocomplete .badge-category {
|
|
margin: 2px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.autocomplete .badge-category.selected {
|
|
font-weight: bold;
|
|
}
|
|
|
|
textarea {
|
|
width: 530px;
|
|
height: 100px;
|
|
}
|
|
|
|
input[type=text] {
|
|
@include small-width {
|
|
width: 450px;
|
|
}
|
|
}
|
|
|
|
#pagedown-editor {
|
|
width: 450px;
|
|
|
|
textarea {
|
|
width: 440px;
|
|
}
|
|
}
|
|
|
|
.static {
|
|
color: $primary;
|
|
margin-top: 5px;
|
|
margin-left: 5px;
|
|
display: inline-block;
|
|
}
|
|
.instructions {
|
|
color: $primary_medium;
|
|
margin-left: 160px;
|
|
margin-top: 5px;
|
|
margin-bottom: 10px;
|
|
}
|
|
.avatar {
|
|
margin-left: 3px;
|
|
}
|
|
.instructions a[href] {
|
|
color: $primary_medium;
|
|
}
|
|
.warning {
|
|
background-color: lighten($highlight_danger, 10%);
|
|
padding: 5px 8px;
|
|
color: $secondary;
|
|
width: 520px;
|
|
}
|
|
|
|
.other .controls {
|
|
margin-top: 10px;
|
|
select {
|
|
width: 280px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-navigation {
|
|
width: 240px;
|
|
margin-right: 20px;
|
|
float: left;
|
|
|
|
h3 {
|
|
color: $primary_light;
|
|
margin: 20px 0 10px 0;
|
|
}
|
|
|
|
.map {
|
|
height: 50px;
|
|
}
|
|
.avatar {
|
|
float: left;
|
|
width: 45px;
|
|
}
|
|
nav.buttons {
|
|
width: 180px;
|
|
padding: 0;
|
|
.btn {
|
|
width: 100%;
|
|
margin-bottom: 5px;
|
|
@include box-sizing(border-box);
|
|
}
|
|
}
|
|
h2 {
|
|
a {
|
|
font-size: 14px;
|
|
color: $primary_light;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-main {
|
|
width: 850px;
|
|
float: left;
|
|
margin-bottom: 50px;
|
|
|
|
@include medium-width {
|
|
width: 735px;
|
|
}
|
|
|
|
@include small-width {
|
|
width: 680px;
|
|
}
|
|
|
|
table.group-members {
|
|
width: 100%;
|
|
th.seen {
|
|
text-align: right;
|
|
}
|
|
td.avatar {
|
|
width: 60px;
|
|
}
|
|
td {
|
|
img {
|
|
margin-right: 10px;
|
|
}
|
|
span.last-seen-at {
|
|
float: right;
|
|
color: $primary_light;
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-content {
|
|
padding: 10px 8px;
|
|
background-color: $secondary;
|
|
border: 1px solid $primary_lighter;
|
|
margin-bottom: 10px;
|
|
|
|
.btn.right {
|
|
float: right
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
|
|
th {
|
|
text-align: left;
|
|
border-bottom: 1px solid $primary_light;
|
|
padding: 5px;
|
|
}
|
|
|
|
td {
|
|
padding: 5px;
|
|
border-bottom: 1px solid $primary_lighter;
|
|
}
|
|
}
|
|
}
|
|
|
|
.about {
|
|
background-color: $primary;
|
|
margin-bottom: 10px;
|
|
overflow: hidden;
|
|
color: $secondary;
|
|
|
|
|
|
.details {
|
|
text-align: center;
|
|
padding: 12px;
|
|
|
|
|
|
h1 {
|
|
font-size: 30px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 20px;
|
|
margin-bottom: 6px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
a[href] {
|
|
color: $secondary;
|
|
}
|
|
|
|
img.avatar {
|
|
border: 3px solid $primary_lightest;
|
|
margin-bottom: 4px;
|
|
background-color: $secondary;
|
|
}
|
|
|
|
.suspended {
|
|
color: $highlight_danger_light;
|
|
}
|
|
|
|
.primary {
|
|
margin-top: 20px;
|
|
float: left;
|
|
width: 75%;
|
|
|
|
h1, h2 {margin-top: 10px;}
|
|
|
|
.bio {
|
|
color: $primary_lighter;
|
|
|
|
a[href] {
|
|
color: $tertiary_light;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.secondary {
|
|
float: right;
|
|
background-color: lighten($primary, 10%);
|
|
text-align: right;
|
|
padding: 0 10px;
|
|
width: 20%;
|
|
|
|
dd {
|
|
color: $secondary;
|
|
margin: 0 0 7px 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
dt {
|
|
color: $primary_lighter;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.controls {
|
|
background-color: $primary_lighter;
|
|
padding: 12px;
|
|
height: 30px;
|
|
|
|
.right {
|
|
float: right;
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.about.collapsed-info {
|
|
.controls {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.details {
|
|
.secondary { display: none; }
|
|
.bio { display: none; }
|
|
|
|
.primary {
|
|
width: 100%;
|
|
text-align: left;
|
|
margin-top: 0;
|
|
|
|
.avatar {
|
|
float: left;
|
|
margin-right: 10px;
|
|
border: 2px solid $secondary;
|
|
width: 45px;
|
|
height: 45px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 20px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 17px;
|
|
line-height: 20px;
|
|
margin-top: 4px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-stream {
|
|
.excerpt {
|
|
margin: 5px 0px;
|
|
font-size: 13px;
|
|
word-wrap: break-word;
|
|
color: lighten($primary, 30%);
|
|
}
|
|
.item.moderator-action {
|
|
background-color: $tertiary_lightest;
|
|
}
|
|
.item.deleted {
|
|
opacity: 0.8;
|
|
background-color: $highlight_danger_light;
|
|
}
|
|
.item.hidden {
|
|
display: block;
|
|
opacity: 0.4;
|
|
}
|
|
.item {
|
|
padding: 10px 8px;
|
|
background-color: $secondary;
|
|
border-bottom: 1px solid lighten($primary_lighter, 10%);
|
|
margin-bottom: 10px;
|
|
}
|
|
.type {
|
|
color: lighten($primary, 40%);
|
|
}
|
|
span.name {
|
|
color: lighten($primary, 40%);
|
|
}
|
|
.time {
|
|
display: block;
|
|
float: right;
|
|
color: $primary_light;
|
|
margin-right: 8px;
|
|
font-size: 11px;
|
|
}
|
|
.avatar-link {
|
|
float: left;
|
|
margin-right: 10px;
|
|
}
|
|
.title {
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
font-size: 14px;
|
|
}
|
|
.edit-reason {
|
|
background-color: $highlight_light;
|
|
padding: 3px 5px 5px 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
// styling of bottom section
|
|
.user-stream .child-actions {
|
|
margin-top: 8px;
|
|
.avatar-link {
|
|
float: none;
|
|
}
|
|
.fa {
|
|
width: 15px;
|
|
display: inline-block;
|
|
color: $primary_medium;
|
|
}
|
|
.avatar-wrapper {
|
|
border: none;
|
|
}
|
|
.avatar-link {
|
|
margin-right: 3px;
|
|
|
|
}
|
|
}
|
|
|
|
.avatar-selector {
|
|
label {
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
}
|
|
#avatar-input {
|
|
width: 0;
|
|
height: 0;
|
|
overflow: hidden;
|
|
}
|
|
.avatar {
|
|
margin: 5px 10px 5px 0;
|
|
}
|
|
}
|