chore: improve clear icon position

This commit is contained in:
joneff 2017-09-06 16:28:50 +03:00 коммит произвёл Magdalena Angelova
Родитель e515bc4e7f
Коммит a5928a0d5e
2 изменённых файлов: 15 добавлений и 10 удалений

Просмотреть файл

@ -28,7 +28,7 @@
}
.k-clear-value {
left: $padding-x;
left: $input-padding-x;
right: auto;
}
}
@ -139,33 +139,38 @@
.k-autocomplete,
.k-dropdown-wrap,
.k-multiselect {
.k-clear-value,
.k-i-loading {
position: absolute;
top: 50%;
margin-top: -.5em;
right: $input-padding-x;
}
.k-clear-value {
right: $padding-x;
height: ($form-line-height * $font-size );
outline: 0;
opacity: .5;
cursor: pointer;
display: none;
flex-direction: row;
align-items: center;
justify-content: center;
top: $input-padding-y;
}
.k-i-loading {
right: $padding-x-lg / 2;
top: 50%;
margin-top: -.5em;
}
&.k-state-focused,
&.k-state-hover,
&:hover {
.k-clear-value {
display: inline-block;
outline: 0;
opacity: .5;
display: inline-flex;
&:hover {
opacity: 1;
cursor: pointer;
}
}
}

Просмотреть файл

@ -10,7 +10,7 @@
}
.k-clear-value {
top: $padding-x-lg / 2;
top: $input-padding-y;
margin-top: 0;
}