mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
113 lines
1.6 KiB
SCSS
113 lines
1.6 KiB
SCSS
// styles that apply to the "share" popup when sharing a link to a post or topic
|
|
|
|
#poster-expansion {
|
|
position: absolute;
|
|
width: 460px;
|
|
left: 20px;
|
|
z-index: 990;
|
|
box-shadow: 0 2px 6px scale-color($primary, $lightness: 90%);
|
|
margin-top: -2px;
|
|
background-color: $secondary;
|
|
padding: 12px 12px 5px 12px;
|
|
|
|
h1 {
|
|
display: inline-block;
|
|
min-width: 120px;
|
|
font-size: 30px;
|
|
line-height: 33px;
|
|
margin-bottom: 8px;
|
|
|
|
a {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
font-size: 20px;
|
|
line-height: 22px;
|
|
font-weight: normal;
|
|
margin-bottom: 5px;
|
|
|
|
a {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
margin-top: 0;
|
|
color: $primary;
|
|
}
|
|
.groups {
|
|
font-size: 13px;
|
|
font-weight: normal;
|
|
margin-top: 0;
|
|
color: $primary;
|
|
|
|
.group-link {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
.bottom {
|
|
clear: both;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
img.avatar {
|
|
float: left;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
p {
|
|
margin: 0 0 5px 0;
|
|
}
|
|
|
|
p.loading {
|
|
margin-top: 45px;
|
|
color: $primary;
|
|
}
|
|
|
|
.btn {
|
|
margin: 0 0 7px 0;
|
|
}
|
|
|
|
.new-user a {
|
|
color: $primary;
|
|
}
|
|
|
|
&.show-badges {
|
|
width: 560px;
|
|
|
|
.names {
|
|
width: 250px;
|
|
float: left;
|
|
}
|
|
|
|
.metadata {
|
|
float: right;
|
|
max-width: 180px;
|
|
}
|
|
|
|
h2 {
|
|
line-height: 12px;
|
|
}
|
|
|
|
.badge-section {
|
|
margin-top: 20px;
|
|
h3 {
|
|
line-height: 43px;
|
|
color: $primary;
|
|
font-size: 14px;
|
|
margin-bottom: -8px;
|
|
}
|
|
}
|
|
|
|
.more-user-badges {
|
|
@extend .user-badge;
|
|
padding: 4px 8px;
|
|
}
|
|
}
|
|
}
|