fix combobox focus style

This commit is contained in:
afc163 2016-02-02 12:27:22 +08:00
parent 588914ecd7
commit 4339bef78c

View File

@ -190,6 +190,7 @@
font-size: 100%;
background: transparent;
outline: 0;
border-radius: @border-radius-base;
}
> i {
float: right;
@ -310,10 +311,16 @@
height: 100%;
position: relative;
z-index: 1;
transition: all .3s @ease-in-out;
&:focus {
box-shadow: 0 0 0 1px tint(@primary-color, 20%), 0 0 0 3px tint(@primary-color, 80%);
}
}
.@{select-prefix-cls}-selection__rendered {
padding: 0;
height: 100%;
overflow: visible;
}
}
}