discourse/app/assets/stylesheets/common/base/topic-admin-menu.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

136 lines
2.5 KiB
SCSS
Raw Normal View History

2013-09-05 15:37:07 -04:00
// 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");
}
}
2015-03-14 02:53:41 -04:00
2015-07-29 10:34:21 -04:00
.modal-body.feature-topic {
max-height: 70vh !important ;
padding: 0 1em;
input.date-picker {
margin: 0;
}
2015-07-29 10:34:21 -04:00
.feature-section {
display: block;
padding: 1.25em 0;
&:not(:last-of-type) {
border-bottom: 1px solid $primary-low;
}
2015-07-29 10:34:21 -04:00
.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;
2015-07-29 10:34:21 -04:00
}
2015-03-14 02:53:41 -04:00
}
.with-validation {
position: relative;
> span {
display: flex;
align-items: flex-start;
> .d-icon {
padding-top: 0.75em;
margin-right: 0.5em;
}
}
}
2015-03-14 02:53:41 -04:00
}
}
.feature-topic-modal {
.d-modal-cancel {
margin-left: 0;
}
2015-03-14 02:53:41 -04:00
}
2015-07-29 10:34:21 -04:00
.desktop-view .feature-topic-modal {
.pin-until {
position: relative;
display: inline-block;
}
.modal-inner-container {
overflow: visible;
}
.modal-footer {
background: $secondary;
}
}
2015-03-14 02:53:41 -04:00
.mobile-view .feature-topic .feature-section {
.desc {
display: block;
clear: both;
max-width: 90%;
margin: 0;
2015-03-14 02:53:41 -04:00
}
.badge-wrapper {
white-space: nowrap;
overflow: hidden;
max-width: 19em;
}
2015-03-14 02:53:41 -04:00
}
2018-07-20 16:37:43 -04:00
// 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(
darken($tertiary, 18%),
darken($tertiary, 12%)
);
color: $secondary;
}
}
&[disabled] {
text-shadow: 0 1px 0 rgba($primary, 0.2);
@include linear-gradient($tertiary, darken($tertiary, 20%));
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.33);
}
}
}