cursor: default;
parent
4769e418e8
commit
f413718bbf
|
@ -157,6 +157,7 @@
|
|||
display: table-cell;
|
||||
background-color: #222;
|
||||
padding-block: 6px;
|
||||
cursor: default;
|
||||
}
|
||||
> .title {
|
||||
width: 100%;
|
||||
|
@ -192,9 +193,10 @@
|
|||
margin: 3px;
|
||||
}
|
||||
}
|
||||
#instances, #membershead {
|
||||
#instances, #membershead, #threadshead {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
#threads {
|
||||
margin: 0 2px 6px;
|
||||
|
@ -212,6 +214,7 @@
|
|||
}
|
||||
.user {
|
||||
white-space: pre-wrap;
|
||||
cursor: default;
|
||||
&:hover {
|
||||
background-color: #333;
|
||||
border-bottom: 1px #bbb solid;
|
||||
|
@ -229,10 +232,7 @@
|
|||
.thread {
|
||||
padding: 2px 3px;
|
||||
white-space: pre;
|
||||
}
|
||||
#newthread {
|
||||
margin-top: 5px;
|
||||
width: fit-content;
|
||||
cursor: default;
|
||||
}
|
||||
#createthread {
|
||||
max-width: fit-content;
|
||||
|
|
|
@ -425,9 +425,11 @@ async function loadThreads(instancediv, select) {
|
|||
if (!instancediv.children['threads']) {
|
||||
instancediv.append(html.node`
|
||||
<div id='threads'>
|
||||
<p><strong>threads</strong></p>
|
||||
<div id='threadlist'>loading...</div>
|
||||
<p id='threadshead'>
|
||||
<strong>threads</strong>
|
||||
<button id='newthread' onclick=${newThread}>create</button>
|
||||
</p>
|
||||
<div id='threadlist'>loading...</div>
|
||||
</div>`);
|
||||
const threadlist = instancediv.children['threads'].children['threadlist'];
|
||||
|
||||
|
|
Loading…
Reference in New Issue