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