input focus 테두리 컬러 추가
This commit is contained in:
parent
652bb6beba
commit
7a9b35c1ec
@ -460,6 +460,7 @@ input[type=text]{
|
|||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background-color: #323234;
|
background-color: #323234;
|
||||||
|
border: 1px solid #323234;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
@ -467,6 +468,10 @@ input[type=text]{
|
|||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
letter-spacing: 0px;
|
letter-spacing: 0px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
transition: border .15s ease-in-out;
|
||||||
|
&:focus{
|
||||||
|
border: 1px solid #1083E3;
|
||||||
|
}
|
||||||
&::placeholder{
|
&::placeholder{
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
@ -498,6 +503,9 @@ input[type=text]{
|
|||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
transition: border-color .17s ease-in-out;
|
transition: border-color .17s ease-in-out;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
&:focus{
|
||||||
|
border-color: #94A0AD;
|
||||||
|
}
|
||||||
&:read-only{
|
&:read-only{
|
||||||
background-color: #FAFAFA;
|
background-color: #FAFAFA;
|
||||||
color: #999999;
|
color: #999999;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user