2013-10-04 00:51:30 +08:00
|
|
|
// styles that apply to the "share" popup when sharing a link to a post or topic
|
2015-08-19 03:04:35 +08:00
|
|
|
// Colors should mostly be absolute here, it will look the same in dark & light themes
|
2013-10-04 00:51:30 +08:00
|
|
|
|
2015-08-19 04:28:02 +08:00
|
|
|
$user_card_primary: #fff;
|
|
|
|
$user_card_background: #222;
|
|
|
|
|
2014-10-21 00:11:36 +08:00
|
|
|
#user-card {
|
2013-10-04 00:51:30 +08:00
|
|
|
position: absolute;
|
2014-10-30 07:48:20 +08:00
|
|
|
width: 500px;
|
2015-03-04 20:02:36 +08:00
|
|
|
left: -9999px;
|
|
|
|
top: -9999px;
|
2013-10-04 00:51:30 +08:00
|
|
|
z-index: 990;
|
2015-08-19 03:04:35 +08:00
|
|
|
box-shadow: 0 2px 12px rgba($primary, .6);
|
2013-10-31 00:40:16 +08:00
|
|
|
margin-top: -2px;
|
2015-08-19 04:28:02 +08:00
|
|
|
color: $user_card_primary;
|
2014-10-17 03:05:36 +08:00
|
|
|
background-size: cover;
|
2015-08-19 04:28:02 +08:00
|
|
|
background: $user_card_background center center;
|
2014-10-31 12:46:27 +08:00
|
|
|
min-height: 175px;
|
2015-08-19 03:04:35 +08:00
|
|
|
-webkit-transition: opacity .2s, -webkit-transform .2s;
|
|
|
|
transition: opacity .2s, transform .2s;
|
|
|
|
|
2015-03-03 01:12:25 +08:00
|
|
|
opacity: 0;
|
2015-08-26 07:58:37 +08:00
|
|
|
@include transform(scale(.9));
|
|
|
|
|
2015-03-03 01:12:25 +08:00
|
|
|
&.show {
|
|
|
|
opacity: 1;
|
2015-08-26 07:58:37 +08:00
|
|
|
@include transform(scale(1));
|
2015-03-03 01:12:25 +08:00
|
|
|
}
|
2014-10-17 03:05:36 +08:00
|
|
|
|
2014-10-30 07:48:20 +08:00
|
|
|
.card-content {
|
2014-11-02 10:58:18 +08:00
|
|
|
padding: 12px 12px 0 12px;
|
2015-08-19 04:28:02 +08:00
|
|
|
background: rgba($user_card_background, .85);
|
2014-11-02 10:58:18 +08:00
|
|
|
margin-top: 80px;
|
2014-10-31 12:46:27 +08:00
|
|
|
|
2014-10-30 07:48:20 +08:00
|
|
|
&:after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-03 01:12:25 +08:00
|
|
|
&.no-bg {
|
|
|
|
min-height: 50px;
|
2014-10-31 12:46:27 +08:00
|
|
|
|
2015-03-03 01:12:25 +08:00
|
|
|
.card-content {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2014-10-30 07:48:20 +08:00
|
|
|
}
|
|
|
|
|
2014-07-25 05:15:40 +08:00
|
|
|
.avatar-placeholder {
|
|
|
|
width: 120px;
|
|
|
|
height: 120px;
|
|
|
|
float: left;
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
2013-10-04 00:51:30 +08:00
|
|
|
h1 {
|
2014-03-02 00:05:30 +08:00
|
|
|
min-width: 120px;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.786em;
|
2014-07-04 11:40:49 +08:00
|
|
|
line-height: 1.25;
|
|
|
|
display: block;
|
2014-10-30 07:48:20 +08:00
|
|
|
max-width: 250px;
|
2014-07-04 11:40:49 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2013-10-05 04:55:54 +08:00
|
|
|
a {
|
2015-08-19 04:28:02 +08:00
|
|
|
color: $user_card_primary;
|
2013-10-05 04:55:54 +08:00
|
|
|
}
|
2014-11-02 10:58:18 +08:00
|
|
|
i {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: .8em;
|
2015-08-19 04:28:02 +08:00
|
|
|
color: $user_card_primary;
|
2014-11-02 10:58:18 +08:00
|
|
|
}
|
2013-10-04 00:51:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.071em;
|
2014-07-04 11:40:49 +08:00
|
|
|
line-height: 1.25;
|
2013-10-04 00:51:30 +08:00
|
|
|
font-weight: normal;
|
2014-07-04 11:40:49 +08:00
|
|
|
display: block;
|
2014-10-30 07:48:20 +08:00
|
|
|
max-width: 250px;
|
2014-07-04 11:40:49 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2013-10-08 23:28:32 +08:00
|
|
|
a {
|
2015-08-19 04:28:02 +08:00
|
|
|
color: $user_card_primary;
|
2013-10-08 23:28:32 +08:00
|
|
|
}
|
2013-10-04 00:51:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.929em;
|
2013-10-04 00:51:30 +08:00
|
|
|
font-weight: normal;
|
2014-03-06 14:14:51 +08:00
|
|
|
margin-top: 0;
|
2015-08-19 04:28:02 +08:00
|
|
|
color: scale-color($user_card_primary, $lightness: 25%);
|
2014-10-02 10:54:03 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2014-10-30 07:48:20 +08:00
|
|
|
a {
|
2015-08-19 04:28:02 +08:00
|
|
|
color: scale-color($user_card_background, $lightness: 50%);
|
2014-10-30 07:48:20 +08:00
|
|
|
}
|
2013-10-04 00:51:30 +08:00
|
|
|
}
|
2015-03-03 01:12:25 +08:00
|
|
|
|
2014-02-11 01:30:36 +08:00
|
|
|
.groups {
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 0.929em;
|
2014-02-11 01:30:36 +08:00
|
|
|
font-weight: normal;
|
2014-03-06 14:14:51 +08:00
|
|
|
margin-top: 0;
|
2015-08-19 04:28:02 +08:00
|
|
|
color: $user_card_background;
|
2014-02-11 01:30:36 +08:00
|
|
|
|
|
|
|
.group-link {
|
2015-08-19 04:28:02 +08:00
|
|
|
color: $user_card_background;
|
2014-02-11 01:30:36 +08:00
|
|
|
}
|
|
|
|
}
|
2013-10-04 00:51:30 +08:00
|
|
|
|
2014-05-10 14:09:04 +08:00
|
|
|
.metadata {
|
2014-11-02 10:58:18 +08:00
|
|
|
width: 100%;
|
|
|
|
clear: both;
|
2014-11-03 23:16:10 +08:00
|
|
|
padding-top: 5px;
|
2014-11-05 01:53:02 +08:00
|
|
|
h3 {
|
|
|
|
display: inline;
|
|
|
|
margin-right: 5px;
|
|
|
|
.desc, a {
|
2015-08-19 04:28:02 +08:00
|
|
|
color: scale-color($user_card_primary, $lightness: 50%);
|
2014-11-05 01:53:02 +08:00
|
|
|
}
|
|
|
|
}
|
2015-08-19 04:28:02 +08:00
|
|
|
div {display: inline; color: scale-color($user_card_background, $lightness: 50%);
|
|
|
|
.group-link {color: scale-color($user_card_background, $lightness: 50%);}
|
2014-11-02 10:58:18 +08:00
|
|
|
}
|
2014-05-10 14:09:04 +08:00
|
|
|
}
|
|
|
|
|
2013-10-04 00:51:30 +08:00
|
|
|
.bottom {
|
|
|
|
clear: both;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
2014-11-05 05:30:46 +08:00
|
|
|
&.has-card-badge-image .bio {
|
|
|
|
width: 75%;
|
|
|
|
}
|
|
|
|
|
2014-07-01 05:41:38 +08:00
|
|
|
.bio {
|
2014-11-02 10:58:18 +08:00
|
|
|
padding: 15px 0 0 0;
|
|
|
|
clear: left;
|
2014-11-05 05:30:46 +08:00
|
|
|
|
2014-10-30 07:48:20 +08:00
|
|
|
a {
|
2015-08-19 04:28:02 +08:00
|
|
|
color: $user_card_primary;
|
2014-10-30 07:48:20 +08:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2014-07-02 20:56:09 +08:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2014-11-02 10:58:18 +08:00
|
|
|
|
2014-11-05 03:25:35 +08:00
|
|
|
a.mention {
|
2015-08-19 04:28:02 +08:00
|
|
|
background-color: scale-color($user_card_primary, $lightness: 50%);
|
2014-11-05 03:25:35 +08:00
|
|
|
}
|
2014-11-02 10:58:18 +08:00
|
|
|
.overflow {
|
|
|
|
max-height: 60px;
|
|
|
|
overflow: hidden;
|
2014-11-04 00:59:29 +08:00
|
|
|
}
|
2014-07-01 05:41:38 +08:00
|
|
|
}
|
|
|
|
|
2013-10-04 00:51:30 +08:00
|
|
|
img.avatar {
|
|
|
|
float: left;
|
2015-04-03 09:28:13 +08:00
|
|
|
margin-right: 10px;
|
2014-11-02 10:58:18 +08:00
|
|
|
margin-top: -53px;
|
2013-10-04 00:51:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0 0 5px 0;
|
|
|
|
}
|
|
|
|
|
2013-10-04 03:51:12 +08:00
|
|
|
.btn {
|
2013-10-04 00:51:30 +08:00
|
|
|
margin: 0 0 7px 0;
|
2014-10-30 07:48:20 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.usercard-controls {
|
|
|
|
list-style-type: none;
|
2014-11-02 10:58:18 +08:00
|
|
|
float: right;
|
2014-11-06 19:29:24 +08:00
|
|
|
margin: 0;
|
2014-10-30 07:48:20 +08:00
|
|
|
|
|
|
|
a {width: 100%; min-width: 150px;}
|
2013-10-04 00:51:30 +08:00
|
|
|
}
|
2013-12-20 07:58:48 +08:00
|
|
|
|
|
|
|
.new-user a {
|
2015-08-19 04:28:02 +08:00
|
|
|
color: scale-color($user_card_background, $lightness: 70%);
|
2013-12-20 07:58:48 +08:00
|
|
|
}
|
2014-03-28 16:49:30 +08:00
|
|
|
|
|
|
|
&.show-badges {
|
2014-10-30 07:48:20 +08:00
|
|
|
width: 580px;
|
2014-03-28 16:49:30 +08:00
|
|
|
|
|
|
|
.names {
|
|
|
|
float: left;
|
2014-10-30 07:48:20 +08:00
|
|
|
height: 60px;
|
|
|
|
position: relative;
|
|
|
|
width: 45%;
|
2014-11-02 10:58:18 +08:00
|
|
|
margin-top: 11px;
|
2014-10-30 07:48:20 +08:00
|
|
|
|
|
|
|
span {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
display: block;
|
2014-10-31 12:46:27 +08:00
|
|
|
width: 250px;
|
2014-10-30 07:48:20 +08:00
|
|
|
}
|
|
|
|
|
2014-03-28 16:49:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.badge-section {
|
2014-07-04 11:40:49 +08:00
|
|
|
float: left;
|
2014-11-02 10:58:18 +08:00
|
|
|
width: 500px;
|
|
|
|
padding-bottom: 10px;
|
|
|
|
margin-top: 5px;
|
2014-10-30 07:48:20 +08:00
|
|
|
|
|
|
|
.user-badge {
|
|
|
|
background: transparent;
|
2015-08-19 04:28:02 +08:00
|
|
|
color: scale-color($user_card_background, $lightness: 50%);
|
|
|
|
border-color: scale-color($user_card_background, $lightness: 50%);
|
2014-10-30 07:48:20 +08:00
|
|
|
}
|
2014-07-04 11:40:49 +08:00
|
|
|
|
2014-03-28 16:49:30 +08:00
|
|
|
h3 {
|
2015-08-19 04:28:02 +08:00
|
|
|
color: $user_card_background;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1em;
|
2014-03-28 16:49:30 +08:00
|
|
|
margin-bottom: -8px;
|
|
|
|
}
|
|
|
|
}
|
2014-04-14 13:58:36 +08:00
|
|
|
|
2014-04-16 18:02:57 +08:00
|
|
|
.more-user-badges {
|
|
|
|
@extend .user-badge;
|
2014-06-24 04:11:55 +08:00
|
|
|
padding: 3px 8px;
|
2014-04-16 18:02:57 +08:00
|
|
|
}
|
2014-04-14 13:58:36 +08:00
|
|
|
}
|
2014-09-11 07:30:32 +08:00
|
|
|
|
|
|
|
.suspended {
|
|
|
|
color: $danger;
|
2014-11-03 23:16:10 +08:00
|
|
|
margin-bottom: 5px;
|
|
|
|
clear: left;
|
|
|
|
padding-top: 15px;
|
2014-09-11 07:30:32 +08:00
|
|
|
}
|
2014-10-21 01:15:58 +08:00
|
|
|
|
|
|
|
.card-badge {
|
|
|
|
img {
|
2014-11-05 05:30:46 +08:00
|
|
|
max-width: 120px;
|
2014-10-21 01:15:58 +08:00
|
|
|
}
|
2014-10-31 12:46:27 +08:00
|
|
|
position: absolute;
|
|
|
|
right: 12px;
|
|
|
|
bottom: 12px;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 2.143em;
|
2015-08-19 04:28:02 +08:00
|
|
|
i {color: $user_card_primary;}
|
2014-10-21 01:15:58 +08:00
|
|
|
}
|
2014-04-14 13:58:36 +08:00
|
|
|
}
|