Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore(combobox): fix horizontal position of clear button
  • Loading branch information
Magdalena Grigorova authored and magdalenaan committed Apr 23, 2018
1 parent 48e712c commit 0d5e6a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/bootstrap/scss/combobox/_layout.scss
@@ -1 +1,3 @@
@import "~@progress/kendo-theme-default/scss/combobox/layout";
$close-icon-position-y: calc(#{$input-padding-x} + #{$button-padding-y} * 2 + #{$icon-size}) !default; // $input-padding-x + combobox-button-width

@import "~@progress/kendo-theme-default/scss/combobox/layout";
2 changes: 1 addition & 1 deletion packages/default/scss/combobox/_layout.scss
@@ -1,5 +1,5 @@
// Button inner size should be calculated with the widget font-size instead of the icon-size
$close-icon-position-y: calc(#{$input-padding-x} + #{$button-padding-y} + #{$form-line-height * $font-size}); // $input-padding-x + button-inner-size()
$close-icon-position-y: calc(#{$input-padding-x} + #{$button-padding-y} * 2 + #{$form-line-height * $font-size}) !default;; // $input-padding-x + button-inner-size()

@include exports("combobox/layout") {

Expand Down

0 comments on commit 0d5e6a6

Please sign in to comment.