css/debug
This commit is contained in:
parent
929765d0fb
commit
a73115df74
1 changed files with 11 additions and 4 deletions
15
build.py
15
build.py
|
@ -309,9 +309,7 @@ border: none;
|
||||||
height: 4em;
|
height: 4em;
|
||||||
}}
|
}}
|
||||||
|
|
||||||
/*
|
.debug {{
|
||||||
|
|
||||||
* {{
|
|
||||||
border-color: rgb(255,0,255);
|
border-color: rgb(255,0,255);
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
|
@ -332,6 +330,12 @@ function check(tab) {{
|
||||||
}}
|
}}
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
function debug() {{
|
||||||
|
for (element of document.getElementsByTagName('*')) {{
|
||||||
|
element.classList.toggle('debug')
|
||||||
|
}}
|
||||||
|
}}
|
||||||
|
|
||||||
function push(tab) {{
|
function push(tab) {{
|
||||||
window.history.pushState(null, null, `?tab=${{tab}}`)
|
window.history.pushState(null, null, `?tab=${{tab}}`)
|
||||||
}}
|
}}
|
||||||
|
@ -838,7 +842,10 @@ tabs = {
|
||||||
''',
|
''',
|
||||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||||
'style': f'''\
|
'style': f'''\
|
||||||
<input type="checkbox" id="dark" onclick="swap()">Dark</input>
|
<ul>
|
||||||
|
<li><input type="checkbox" id="dark" onclick="swap()">Dark</input></li>
|
||||||
|
<li><input type="checkbox" id="debug" onclick="debug()">Debug</input></li>
|
||||||
|
</ul>
|
||||||
''',
|
''',
|
||||||
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
#⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅⋅
|
||||||
'tasks': f'''\
|
'tasks': f'''\
|
||||||
|
|
Loading…
Reference in a new issue