mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
107 lines
1.6 KiB
SCSS
107 lines
1.6 KiB
SCSS
.share-and-invite.modal {
|
|
.modal-body {
|
|
max-width: 475px;
|
|
min-width: 320px;
|
|
padding: 0;
|
|
}
|
|
|
|
.modal-panel {
|
|
padding: 0.667em;
|
|
}
|
|
|
|
.modal-header {
|
|
.modal-close {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.share-and-invite.modal .share.modal-panel {
|
|
.header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
|
|
.title {
|
|
font-size: $font-0;
|
|
font-weight: normal;
|
|
margin-bottom: 8px;
|
|
|
|
.post-date {
|
|
color: $primary-medium;
|
|
font-size: $font-down-1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.topic-share-url {
|
|
width: 100%;
|
|
height: auto;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.topic-share-url {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.sources {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
flex-direction: row;
|
|
|
|
.social-link {
|
|
font-size: $font-up-6;
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.share-and-invite.modal .invite.modal-panel {
|
|
.error-message,
|
|
.success-message {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.body {
|
|
.invite-user-control,
|
|
.group-access-control,
|
|
.show-custom-message-control {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.instructions {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.email-or-username-input {
|
|
width: 100%;
|
|
}
|
|
|
|
.invite-user-input-wrapper {
|
|
display: flex;
|
|
div.ac-wrap {
|
|
flex: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.btn-primary {
|
|
margin-right: 8px;
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|