discourse/app/assets/stylesheets/desktop/user-card.scss
2014-10-29 19:48:20 -04:00

206 lines
3.1 KiB
SCSS

// styles that apply to the "share" popup when sharing a link to a post or topic
#user-card {
position: absolute;
width: 500px;
left: 20px;
z-index: 990;
box-shadow: 0 2px 6px rgba(0,0,0, .6);
margin-top: -2px;
background-color: $primary;
color: $secondary;
background-size: cover;
background-position: center center;
.card-content {
padding: 12px;
background: rgba($primary, .85);
margin-top: 100px;
&:after {
content: '';
display: block;
clear: both;
}
}
&.no-bg {
.card-content {
margin-top: 0;
}
}
.avatar-placeholder {
width: 120px;
height: 120px;
float: left;
padding-right: 10px;
}
h1 {
display: inline-block;
min-width: 120px;
font-size: 25px;
line-height: 1.25;
display: block;
max-width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
a {
color: $secondary;
}
}
h2 {
font-size: 15px;
line-height: 1.25;
font-weight: normal;
display: block;
max-width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
a {
color: $secondary;
}
}
h3 {
font-size: 13px;
font-weight: normal;
margin-top: 0;
color: scale-color($primary, $lightness: 50%);
overflow: hidden;
text-overflow: ellipsis;
a {
color: $secondary;
}
}
.groups {
font-size: 13px;
font-weight: normal;
margin-top: 0;
color: $primary;
.group-link {
color: $primary;
}
}
.metadata {
position: absolute;
right: 20px;
top: 10px;
max-width: 180px;
text-align: right;
}
.bottom {
clear: both;
padding-top: 10px;
}
.bio {
max-height: 55px;
overflow: auto;
float: left;
margin: 10px 0;
width: 70%;
a {
color: $secondary;
text-decoration: underline;
}
img {
max-width: 100%;
}
}
img.avatar {
float: left;
padding-right: 10px;
margin-top: -60px;
}
p {
margin: 0 0 5px 0;
}
p.loading {
margin-top: 45px;
color: $primary;
}
.btn {
margin: 0 0 7px 0;
box-sizing: border-box;
}
.usercard-controls {
list-style-type: none;
margin: 0;
position: absolute;
right: 12px;
a {width: 100%; min-width: 150px;}
}
.new-user a {
color: scale-color($primary, $lightness: 70%);
}
&.show-badges {
width: 580px;
.names {
float: left;
height: 60px;
position: relative;
width: 45%;
span {
position: absolute;
bottom: 0;
display: block;
}
}
.badge-section {
margin-top: 10px;
float: left;
width: 390px;
.user-badge {
background: transparent;
color: $secondary;
}
h3 {
color: $primary;
font-size: 14px;
margin-bottom: -8px;
}
}
.more-user-badges {
@extend .user-badge;
padding: 3px 8px;
font-size: 13px;
}
}
.suspended {
color: $danger;
margin-bottom: 10px;
}
.card-badge {
img {
max-width: 100px;
}
float: right;
margin-right: 5px;
}
}