UX: refactor title editing CSS to improve layout (#30109)
This commit is contained in:
parent
f75c43713b
commit
19f530a827
|
@ -52,6 +52,7 @@
|
||||||
<div class="edit-topic-title">
|
<div class="edit-topic-title">
|
||||||
<PrivateMessageGlyph @shouldShow={{this.model.isPrivateMessage}} />
|
<PrivateMessageGlyph @shouldShow={{this.model.isPrivateMessage}} />
|
||||||
|
|
||||||
|
<div class="edit-title__wrapper">
|
||||||
<PluginOutlet
|
<PluginOutlet
|
||||||
@name="edit-topic-title"
|
@name="edit-topic-title"
|
||||||
@outletArgs={{hash model=this.model buffered=this.buffered}}
|
@outletArgs={{hash model=this.model buffered=this.buffered}}
|
||||||
|
@ -63,8 +64,10 @@
|
||||||
@autofocus="true"
|
@autofocus="true"
|
||||||
/>
|
/>
|
||||||
</PluginOutlet>
|
</PluginOutlet>
|
||||||
|
</div>
|
||||||
|
|
||||||
{{#if this.showCategoryChooser}}
|
{{#if this.showCategoryChooser}}
|
||||||
|
<div class="edit-category__wrapper">
|
||||||
<PluginOutlet
|
<PluginOutlet
|
||||||
@name="edit-topic-category"
|
@name="edit-topic-category"
|
||||||
@outletArgs={{hash model=this.model buffered=this.buffered}}
|
@outletArgs={{hash model=this.model buffered=this.buffered}}
|
||||||
|
@ -75,9 +78,11 @@
|
||||||
class="small"
|
class="small"
|
||||||
/>
|
/>
|
||||||
</PluginOutlet>
|
</PluginOutlet>
|
||||||
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
{{#if this.canEditTags}}
|
{{#if this.canEditTags}}
|
||||||
|
<div class="edit-tags__wrapper">
|
||||||
<PluginOutlet
|
<PluginOutlet
|
||||||
@name="edit-topic-tags"
|
@name="edit-topic-tags"
|
||||||
@outletArgs={{hash model=this.model buffered=this.buffered}}
|
@outletArgs={{hash model=this.model buffered=this.buffered}}
|
||||||
|
@ -94,16 +99,14 @@
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</PluginOutlet>
|
</PluginOutlet>
|
||||||
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<span>
|
|
||||||
<PluginOutlet
|
<PluginOutlet
|
||||||
@name="edit-topic"
|
@name="edit-topic"
|
||||||
@connectorTagName="div"
|
@connectorTagName="div"
|
||||||
@outletArgs={{hash model=this.model buffered=this.buffered}}
|
@outletArgs={{hash model=this.model buffered=this.buffered}}
|
||||||
/>
|
/>
|
||||||
</span>
|
|
||||||
|
|
||||||
<div class="edit-controls">
|
<div class="edit-controls">
|
||||||
<DButton
|
<DButton
|
||||||
|
|
|
@ -249,9 +249,6 @@
|
||||||
.title-wrapper {
|
.title-wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
button {
|
|
||||||
margin: 0 0.5em 0 0;
|
|
||||||
}
|
|
||||||
.topic-statuses {
|
.topic-statuses {
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
.d-icon {
|
.d-icon {
|
||||||
|
@ -268,7 +265,9 @@
|
||||||
.title-wrapper {
|
.title-wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
width: 90%;
|
@media screen and (min-width: 925px) {
|
||||||
|
width: 90%; // topic title isn't full-width on wide screens
|
||||||
|
}
|
||||||
}
|
}
|
||||||
h1 {
|
h1 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
@ -282,36 +281,66 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
gap: 0.5em;
|
||||||
|
width: 100%;
|
||||||
max-width: calc(
|
max-width: calc(
|
||||||
var(--topic-body-width) + (var(--topic-body-width-padding) * 2) +
|
var(--topic-body-width) + (var(--topic-body-width-padding) * 2) +
|
||||||
var(--topic-avatar-width)
|
var(--topic-avatar-width)
|
||||||
);
|
);
|
||||||
#edit-title {
|
|
||||||
flex: 1 1 100%;
|
|
||||||
}
|
|
||||||
.category-chooser,
|
|
||||||
.mini-tag-chooser {
|
|
||||||
flex: 1 1 35%;
|
|
||||||
margin: 0 0 9px 0;
|
|
||||||
@media all and (max-width: 500px) {
|
|
||||||
flex: 1 1 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.mini-tag-chooser {
|
|
||||||
flex: 1 1 54%;
|
|
||||||
margin: 0 0 9px 0;
|
|
||||||
margin-left: 1%; // category at 40%, tag chooser at 58%
|
|
||||||
@media all and (max-width: 500px) {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.edit-controls {
|
|
||||||
flex: 1 1 100%;
|
|
||||||
}
|
|
||||||
.select-kit .category-row {
|
.select-kit .category-row {
|
||||||
max-width: unset;
|
max-width: unset;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.edit-title__wrapper {
|
||||||
|
flex: 1 1 100%;
|
||||||
|
#edit-title {
|
||||||
|
width: 100%;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.edit-category__wrapper {
|
||||||
|
flex: 1 1 5%;
|
||||||
|
@include breakpoint(tablet) {
|
||||||
|
min-width: 0; // allows category name to shrink to fit narrow screens
|
||||||
|
}
|
||||||
|
.select-kit.combo-box.category-chooser {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.edit-tags__wrapper {
|
||||||
|
flex: 1 1 33%;
|
||||||
|
@include breakpoint(tablet) {
|
||||||
|
flex: 1 1 100%; // force full row on narrow screens
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-tag-chooser {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.select-kit-header--filter {
|
||||||
|
flex-wrap: nowrap; // forces the whole input to wrap if needed, rather than individual tags
|
||||||
|
min-width: 0;
|
||||||
|
@include breakpoint(tablet) {
|
||||||
|
flex-wrap: wrap; // individual tags will need to wrap on narrow screens
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.multi-select-filter {
|
||||||
|
flex-shrink: 0;
|
||||||
|
min-width: 2em; // always provide a minimal space for input
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.edit-controls {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
gap: 0.5em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.private-message-glyph {
|
.private-message-glyph {
|
||||||
|
|
|
@ -18,11 +18,6 @@
|
||||||
z-index: z("base");
|
z-index: z("base");
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
|
||||||
#edit-title,
|
|
||||||
.category-chooser,
|
|
||||||
.edit-controls {
|
|
||||||
width: 500px;
|
|
||||||
}
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: var(--font-up-4);
|
font-size: var(--font-up-4);
|
||||||
line-height: var(--line-height-medium);
|
line-height: var(--line-height-medium);
|
||||||
|
|
Loading…
Reference in New Issue