mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:42:57 +08:00
31 lines
595 B
SCSS
31 lines
595 B
SCSS
// styles that apply to the "share" popup when sharing a link to a post or topic
|
|
|
|
@import "foundation/variables";
|
|
@import "foundation/mixins";
|
|
|
|
#share-link {
|
|
position: absolute;
|
|
left: 20px;
|
|
z-index: 990;
|
|
@include border-radius-all(3px);
|
|
@include box-shadow(1px 1px 5px $darkish_gray);
|
|
background-color: $light_gray;
|
|
padding: 3px 7px 3px 7px;
|
|
width: 300px;
|
|
@include fades-in(0.25s);
|
|
&.visible {
|
|
@include visible;
|
|
}
|
|
input[type=text] {
|
|
width: 96%;
|
|
}
|
|
h3 {
|
|
font-size: 13px;
|
|
}
|
|
.link {
|
|
display: block;
|
|
margin-right: 2px;
|
|
text-align: right;
|
|
}
|
|
}
|