checkbox disabled 추가

This commit is contained in:
김창수 2024-11-18 17:34:12 +09:00
parent f2d283aa8b
commit fe8d4fca3f
2 changed files with 7 additions and 1 deletions

View File

@ -241,7 +241,7 @@ export default function CanvasEstimate() {
</div> </div>
<div className="special-note-check-item"> <div className="special-note-check-item">
<div className="d-check-box light"> <div className="d-check-box light">
<input type="checkbox" id="ch03" /> <input type="checkbox" id="ch03" disabled checked/>
<label htmlFor="ch03">出力制御の時 (中三電以外)</label> <label htmlFor="ch03">出力制御の時 (中三電以外)</label>
</div> </div>
</div> </div>

View File

@ -779,6 +779,12 @@ input[type=text]{
transform: translate(7.75px,4.5px) rotate(45deg); transform: translate(7.75px,4.5px) rotate(45deg);
-ms-transform: translate(7.75px,4.5px) rotate(45deg); -ms-transform: translate(7.75px,4.5px) rotate(45deg);
} }
input[type=checkbox]:disabled + label::before{
background-color: #FAFAFA;
}
input[type=checkbox]:disabled + label::after{
border-color: #999;
}
&.pop{ &.pop{
label{ label{
&:before{ &:before{