FIX: minor alignments improvements to select-kit

This commit is contained in:
Joffrey JAFFEUX 2018-03-22 17:17:28 +01:00 committed by GitHub
parent 4a6fb242bd
commit 037cc63b91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View File

@ -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() {

View File

@ -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")

View File

@ -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;