mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:37:16 +08:00
133 lines
2.4 KiB
SCSS
133 lines
2.4 KiB
SCSS
// Styles for the topic admin menu
|
|
|
|
.topic-admin-popup-menu {
|
|
@include breakpoint(mobile-extra-large) {
|
|
width: calc(100% - 20px);
|
|
margin: 0 10px;
|
|
padding: 0;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
z-index: z("modal", "popover");
|
|
|
|
@keyframes slideUp {
|
|
0% {
|
|
transform: translateY(100%);
|
|
}
|
|
100% {
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
animation: slideUp 0.3s;
|
|
}
|
|
|
|
.mobile-view & {
|
|
z-index: z("modal", "popover");
|
|
}
|
|
}
|
|
|
|
.modal-body.feature-topic {
|
|
max-height: 70vh !important ;
|
|
padding: 0 1em;
|
|
input.date-picker {
|
|
margin: 0;
|
|
}
|
|
.feature-section {
|
|
display: block;
|
|
padding: 1.25em 0;
|
|
&:not(:last-of-type) {
|
|
border-bottom: 1px solid $primary-low;
|
|
}
|
|
.badge-wrapper {
|
|
margin-right: 0;
|
|
}
|
|
.desc {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
p:first-of-type {
|
|
margin: 0;
|
|
}
|
|
p {
|
|
margin: 10px 0 0;
|
|
max-width: 31em;
|
|
}
|
|
}
|
|
.with-validation {
|
|
position: relative;
|
|
|
|
> span {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
> .d-icon {
|
|
padding-top: 0.75em;
|
|
margin-right: 0.5em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.feature-topic-modal {
|
|
.d-modal-cancel {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.desktop-view .feature-topic-modal {
|
|
.pin-until {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
.modal-inner-container {
|
|
overflow: visible;
|
|
}
|
|
.modal-footer {
|
|
background: $secondary;
|
|
}
|
|
}
|
|
|
|
.mobile-view .feature-topic .feature-section {
|
|
.desc {
|
|
display: block;
|
|
clear: both;
|
|
max-width: 90%;
|
|
margin: 0;
|
|
}
|
|
.badge-wrapper {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
max-width: 19em;
|
|
}
|
|
}
|
|
|
|
// Select posts
|
|
|
|
.selected-posts {
|
|
border: 1px solid $tertiary-medium;
|
|
background-color: $tertiary-low;
|
|
.btn {
|
|
border: none;
|
|
color: $secondary;
|
|
font-weight: normal;
|
|
margin-bottom: 10px;
|
|
&:not(.btn-danger) {
|
|
background: $tertiary;
|
|
border-color: $tertiary;
|
|
&[href] {
|
|
color: $secondary;
|
|
}
|
|
&:hover {
|
|
color: $secondary;
|
|
background: $tertiary-high;
|
|
}
|
|
&:active {
|
|
@include linear-gradient($tertiary-hover, $tertiary);
|
|
color: $secondary;
|
|
}
|
|
}
|
|
&[disabled] {
|
|
text-shadow: 0 1px 0 rgba($primary, 0.2);
|
|
@include linear-gradient($tertiary, $tertiary-hover);
|
|
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.33);
|
|
}
|
|
}
|
|
}
|