미디어위키:Gadget-Toctoggle.css: 두 판 사이의 차이

(새 문서: →‎Toctoggle for Liberty 1.11.0: :not(:checked) > .toctogglecheckbox { display: inline !important; position: absolute; opacity: 0; z-index: -1; } .toctogglespan {...)
 
(차이 없음)

2022년 12월 31일 (토) 15:16 기준 최신판

/* Toctoggle for Liberty 1.11.0 */
:not(:checked) > .toctogglecheckbox {
    display: inline !important;
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.toctogglespan {
    font-size: 94%;
}

:not(:checked) > .toctogglespan:before {
    content: ' [';
}

.toctogglelabel {
    cursor: pointer;
    color: #0645ad;
}

.toctogglecheckbox:checked + .toctitle .toctogglelabel:after {
    content: '보이기';
}

.toctogglecheckbox:not(:checked) + .toctitle .toctogglelabel:after {
    content: '숨기기';
}

:not(:checked) > .toctogglespan:after {
    content: ']';
}

.toctogglecheckbox:checked ~ ul {
    display: none;
}
/* Toctoggle end */