readonly focus 수정

This commit is contained in:
김창수 2024-10-25 11:11:15 +09:00
parent 1d39f3c54c
commit 8847e080f6

View File

@ -482,6 +482,9 @@ input[type=text]{
} }
&:read-only{ &:read-only{
color: #AAA; color: #AAA;
&:focus{
border: 1px solid #323234;
}
} }
&.plane{ &.plane{
font-family: 'Noto Sans JP', sans-serif; font-family: 'Noto Sans JP', sans-serif;
@ -509,6 +512,9 @@ input[type=text]{
&:read-only{ &:read-only{
background-color: #FAFAFA; background-color: #FAFAFA;
color: #999999; color: #999999;
&:focus{
border-color: #eee;
}
} }
} }
} }