selectbox/input.css

50 lines
640 B
CSS

.input
{
background: white;
border: 1px solid #d8d8d8;
border-radius: 0;
font-size: inherit;
padding: 0;
color: rgb(33, 33, 33);
position: relative;
}
.inputElement
{
font-size: inherit;
border: 0;
padding: 0 2em 0 .5em;
margin: 0;
box-sizing: border-box;
display: block;
outline: none;
width: 100%;
}
.inputElement:focus
{
box-shadow: inset 0 0 0 1px #4196d4;
display: block;
}
input.inputElement
{
line-height: 200%;
height: 28px;
}
.inputElement::-ms-clear
{
display: none;
}
.bar
{
display: none;
}
.bar:after, .bar:before
{
display: none;
}