mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Move some autocomplete input styling to SCSS (#8381)
This commit is contained in:
@@ -212,11 +212,9 @@ export default function(options) {
|
||||
}
|
||||
|
||||
if (options.single && !options.width) {
|
||||
this.css("width", "100%");
|
||||
this.attr("class", `${this.attr("class")} fullwidth-input`);
|
||||
} else if (options.width) {
|
||||
this.css("width", options.width);
|
||||
} else {
|
||||
this.width(150);
|
||||
}
|
||||
|
||||
this.attr(
|
||||
|
||||
@@ -437,6 +437,9 @@ div.ac-wrap {
|
||||
margin: 0;
|
||||
background: transparent;
|
||||
min-height: unset;
|
||||
&.fullwidth-input {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -15,6 +15,10 @@
|
||||
width: 404px;
|
||||
}
|
||||
|
||||
.item + #private-message-users {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.select-kit.is-expanded {
|
||||
z-index: z("composer", "dropdown") + 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user