UX: improve layout of inline title editing buttons (#1000)
This commit is contained in:
parent
b32b1cf241
commit
625fd06744
|
@ -115,7 +115,7 @@ export default class AiCategorySuggester extends Component {
|
||||||
@icon={{this.triggerIcon}}
|
@icon={{this.triggerIcon}}
|
||||||
@identifier="ai-category-suggester"
|
@identifier="ai-category-suggester"
|
||||||
@onClose={{this.onClose}}
|
@onClose={{this.onClose}}
|
||||||
@triggerClass="suggestion-button suggest-category-button {{if
|
@triggerClass="btn-transparent suggestion-button suggest-category-button {{if
|
||||||
this.loading
|
this.loading
|
||||||
'is-loading'
|
'is-loading'
|
||||||
}}"
|
}}"
|
||||||
|
|
|
@ -180,7 +180,7 @@ export default class AiTagSuggester extends Component {
|
||||||
@icon={{this.triggerIcon}}
|
@icon={{this.triggerIcon}}
|
||||||
@identifier="ai-tag-suggester"
|
@identifier="ai-tag-suggester"
|
||||||
@onClose={{this.onClose}}
|
@onClose={{this.onClose}}
|
||||||
@triggerClass="suggestion-button suggest-tags-button {{if
|
@triggerClass="btn-transparent suggestion-button suggest-tags-button {{if
|
||||||
this.loading
|
this.loading
|
||||||
'is-loading'
|
'is-loading'
|
||||||
}}"
|
}}"
|
||||||
|
|
|
@ -117,7 +117,7 @@ export default class AiTitleSuggester extends Component {
|
||||||
@icon={{this.triggerIcon}}
|
@icon={{this.triggerIcon}}
|
||||||
@identifier="ai-title-suggester"
|
@identifier="ai-title-suggester"
|
||||||
@onClose={{this.onClose}}
|
@onClose={{this.onClose}}
|
||||||
@triggerClass="suggestion-button suggest-titles-button {{if
|
@triggerClass="btn-transparent suggestion-button suggest-titles-button {{if
|
||||||
this.loading
|
this.loading
|
||||||
'is-loading'
|
'is-loading'
|
||||||
}}"
|
}}"
|
||||||
|
|
|
@ -209,6 +209,30 @@
|
||||||
border-bottom-right-radius: 0;
|
border-bottom-right-radius: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#edit-title {
|
||||||
|
padding-right: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.category-chooser {
|
||||||
|
.select-kit-header-wrapper {
|
||||||
|
padding-right: 1.5em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.mini-tag-chooser {
|
||||||
|
.multi-select-header {
|
||||||
|
padding-right: 2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.select-kit.is-expanded {
|
||||||
|
// need to raise the z-index so the sibling input buttons don't cover the dropdown
|
||||||
|
z-index: z("dropdown") + 1;
|
||||||
|
+ button {
|
||||||
|
z-index: z("dropdown") + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.suggestion-button {
|
.suggestion-button {
|
||||||
|
@ -217,15 +241,23 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.edit-title__wrapper,
|
||||||
|
.edit-category__wrapper,
|
||||||
|
.edit-tags__wrapper {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
.suggest-titles-button,
|
.suggest-titles-button,
|
||||||
.suggest-tags-button,
|
.suggest-tags-button,
|
||||||
.suggest-category-button {
|
.suggest-category-button {
|
||||||
align-self: baseline;
|
position: absolute;
|
||||||
border: 1px solid var(--primary-400);
|
right: 0;
|
||||||
border-left: none;
|
top: 1px; // container border width
|
||||||
background: none;
|
z-index: z("dropdown");
|
||||||
border-top-left-radius: 0;
|
|
||||||
border-bottom-left-radius: 0;
|
#reply-control & {
|
||||||
|
z-index: z("composer", "dropdown") + 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ai-category-suggester-content,
|
.ai-category-suggester-content,
|
||||||
|
@ -319,6 +351,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.showing-ai-suggestions {
|
||||||
|
#reply-title {
|
||||||
|
padding-right: 2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.suggest-tags-button + .ai-suggestions-menu {
|
.suggest-tags-button + .ai-suggestions-menu {
|
||||||
|
|
Loading…
Reference in New Issue