diff src/site.css @ 4:b1adec083e44

chat work
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 08 Jul 2025 22:15:41 -0600
parents 78708fa556a0
children 2b7dcf355a78
line wrap: on
line diff
--- a/src/site.css	Tue Jul 08 16:02:29 2025 -0600
+++ b/src/site.css	Tue Jul 08 22:15:41 2025 -0600
@@ -14,6 +14,14 @@
 	text-decoration: underline;
 }
 
+button,
+img[onclick],
+label[clickable],
+input[type="radio"],
+input[type="submit"] {
+	cursor: pointer;
+}
+
 div[header] {
 	font-size: 14px;
 	background-color: #ddd;
@@ -28,27 +36,30 @@
 	margin-bottom: 2em;
 }
 
-[waiting-ai-icon] {
-	width: 100px;
-	position: absolute;
-	top: 50%;
-	left: 50%;
-	transform: translate(-50%,-50%);
-	z-index: 3000;
-	display: none;
+span[pulldown] {
+	position: relative;
 }
 
-[ai_container] div[ask] {
-	padding-top: 1em;
-	padding-bottom: 1em;
-	padding-left: 12px;
-	padding-right: 12px;
-	display: flex;
-	gap: 8px;
-	align-items: flex-end;
+span[pulldown] > div {
+	display: none;
+	right: 100%;
+	z-index: 2;
+	position: absolute;
+	border: 1px solid #cccccc;
+	border-radius: 4px;
+	text-align: left;
+	background-color: #eeeeee;
+	padding: 5px 0;
 }
-[ai_container] textarea {
-	flex-grow: 1;
-	max-height: 150px;
-	resize: none;
+
+span[pulldown] > div > span {
+	white-space: nowrap;
+	display: block;
+	padding: 8px 16px;
+	cursor: pointer;
 }
+
+span[pulldown] > div > span:hover {
+	color: #ffffff;
+	background-color: #428bca;
+}