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