UX: Improve layout of topic pin admin modal
This commit is contained in:
parent
9b050f2822
commit
d09bf892c7
|
@ -53,15 +53,17 @@
|
|||
{{else}}
|
||||
<p class="with-validation">
|
||||
{{html-safe pinMessage}}
|
||||
{{d-icon "far-clock"}}
|
||||
{{future-date-input
|
||||
class="pin-until"
|
||||
includeFarFuture=true
|
||||
clearable=true
|
||||
input=model.pinnedInCategoryUntil
|
||||
onChangeInput=(action (mut model.pinnedInCategoryUntil))
|
||||
}}
|
||||
{{popup-input-tip validation=pinInCategoryValidation shownAt=pinInCategoryTipShownAt}}
|
||||
<span>
|
||||
{{d-icon "far-clock"}}
|
||||
{{future-date-input
|
||||
class="pin-until"
|
||||
includeFarFuture=true
|
||||
clearable=true
|
||||
input=model.pinnedInCategoryUntil
|
||||
onChangeInput=(action (mut model.pinnedInCategoryUntil))
|
||||
}}
|
||||
{{popup-input-tip validation=pinInCategoryValidation shownAt=pinInCategoryTipShownAt}}
|
||||
</span>
|
||||
</p>
|
||||
{{/if}}
|
||||
<p>
|
||||
|
@ -100,15 +102,17 @@
|
|||
{{else}}
|
||||
<p class="with-validation">
|
||||
{{i18n "topic.feature_topic.pin_globally"}}
|
||||
{{d-icon "far-clock"}}
|
||||
{{future-date-input
|
||||
class="pin-until"
|
||||
includeFarFuture=true
|
||||
clearable=true
|
||||
input=model.pinnedGloballyUntil
|
||||
onChangeInput=(action (mut model.pinnedGloballyUntil))
|
||||
}}
|
||||
{{popup-input-tip validation=pinGloballyValidation shownAt=pinGloballyTipShownAt}}
|
||||
<span>
|
||||
{{d-icon "far-clock"}}
|
||||
{{future-date-input
|
||||
class="pin-until"
|
||||
includeFarFuture=true
|
||||
clearable=true
|
||||
input=model.pinnedGloballyUntil
|
||||
onChangeInput=(action (mut model.pinnedGloballyUntil))
|
||||
}}
|
||||
{{popup-input-tip validation=pinGloballyValidation shownAt=pinGloballyTipShownAt}}
|
||||
</span>
|
||||
</p>
|
||||
{{/if}}
|
||||
<p>
|
||||
|
|
|
@ -25,13 +25,14 @@
|
|||
}
|
||||
|
||||
.modal-body.feature-topic {
|
||||
max-height: 500px;
|
||||
max-height: 70vh !important ;
|
||||
padding: 0 1em;
|
||||
input.date-picker {
|
||||
margin: 0;
|
||||
}
|
||||
.feature-section {
|
||||
display: block;
|
||||
padding: 1em 0;
|
||||
padding: 1.25em 0;
|
||||
&:not(:last-of-type) {
|
||||
border-bottom: 1px solid $primary-low;
|
||||
}
|
||||
|
@ -46,10 +47,20 @@
|
|||
}
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -61,18 +72,16 @@
|
|||
}
|
||||
|
||||
.desktop-view .feature-topic-modal {
|
||||
.feature-topic {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.modal-inner-container {
|
||||
min-width: 700px;
|
||||
}
|
||||
|
||||
.pin-until {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
.modal-inner-container {
|
||||
overflow: visible;
|
||||
}
|
||||
.modal-footer {
|
||||
background: $secondary;
|
||||
}
|
||||
}
|
||||
|
||||
.mobile-view .feature-topic .feature-section {
|
||||
|
@ -82,6 +91,11 @@
|
|||
max-width: 90%;
|
||||
margin: 0;
|
||||
}
|
||||
.badge-wrapper {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
max-width: 19em;
|
||||
}
|
||||
}
|
||||
|
||||
// Select posts
|
||||
|
|
Loading…
Reference in New Issue