mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 21:10:17 +08:00
FIX: minor alignments improvements to select-kit
This commit is contained in:
parent
4a6fb242bd
commit
037cc63b91
|
@ -7,8 +7,8 @@ export default SingleSelectComponent.extend({
|
|||
autoFilterable: true,
|
||||
headerComponent: "combo-box/combo-box-header",
|
||||
|
||||
caretUpIcon: "caret-up",
|
||||
caretDownIcon: "caret-down",
|
||||
caretUpIcon: "caret-up fa-fw",
|
||||
caretDownIcon: "caret-down fa-fw",
|
||||
clearable: false,
|
||||
|
||||
computeHeaderContent() {
|
||||
|
|
|
@ -39,7 +39,7 @@ export default ComboBox.extend(Tags, {
|
|||
|
||||
@computed("hasReachedLimit")
|
||||
caretIcon(hasReachedLimit) {
|
||||
return hasReachedLimit ? null : "plus";
|
||||
return hasReachedLimit ? null : "plus fa-fw";
|
||||
},
|
||||
|
||||
@computed("tags")
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
}
|
||||
|
||||
.select-kit-row {
|
||||
margin: 5px;
|
||||
margin: 4px;
|
||||
min-height: 1px;
|
||||
padding: 5px;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.select-kit-filter {
|
||||
line-height: $line-height-medium;
|
||||
padding: 6px 10px;
|
||||
padding: 5px 6px;
|
||||
border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
||||
border-bottom: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);
|
||||
|
||||
|
@ -25,7 +25,7 @@
|
|||
.select-kit-header {
|
||||
background: $secondary;
|
||||
border: 1px solid $primary-medium;
|
||||
padding: 4px 10px;
|
||||
padding: 4px;
|
||||
font-weight: 500;
|
||||
font-size: $font-0;
|
||||
line-height: $line-height-large;
|
||||
|
|
Loading…
Reference in New Issue
Block a user