Spaces:
Running
Running
Commit ·
cfed9ea
1
Parent(s): d9264ca
style.css
Browse files- web/style.css +20 -19
web/style.css
CHANGED
|
@@ -150,6 +150,7 @@ textarea:focus {
|
|
| 150 |
|
| 151 |
|
| 152 |
/* Layout Splits */
|
|
|
|
| 153 |
.main-container {
|
| 154 |
display: flex;
|
| 155 |
gap: 20px;
|
|
@@ -158,13 +159,13 @@ textarea:focus {
|
|
| 158 |
}
|
| 159 |
|
| 160 |
.left-panel {
|
| 161 |
-
flex: 0 0 45%;
|
| 162 |
display: flex;
|
| 163 |
flex-direction: column;
|
| 164 |
}
|
| 165 |
|
| 166 |
.right-panel {
|
| 167 |
-
flex: 0 0 55%;
|
| 168 |
border-left: 2px solid #555;
|
| 169 |
padding-left: 20px;
|
| 170 |
}
|
|
@@ -199,12 +200,12 @@ textarea:focus {
|
|
| 199 |
cursor: pointer;
|
| 200 |
}
|
| 201 |
|
| 202 |
-
|
| 203 |
-
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
|
| 209 |
/* 🔹 THE CRITICAL FIX: Scrollbar per agent */
|
| 210 |
.agent-content {
|
|
@@ -217,16 +218,16 @@ textarea:focus {
|
|
| 217 |
padding: 5px;
|
| 218 |
}
|
| 219 |
|
| 220 |
-
|
| 221 |
-
|
| 222 |
-
|
| 223 |
|
| 224 |
-
|
| 225 |
-
|
| 226 |
-
|
| 227 |
-
|
| 228 |
|
| 229 |
-
|
| 230 |
-
|
| 231 |
-
|
| 232 |
-
|
|
|
|
| 150 |
|
| 151 |
|
| 152 |
/* Layout Splits */
|
| 153 |
+
/* Forces the two panels to stand next to each other */
|
| 154 |
.main-container {
|
| 155 |
display: flex;
|
| 156 |
gap: 20px;
|
|
|
|
| 159 |
}
|
| 160 |
|
| 161 |
.left-panel {
|
| 162 |
+
flex: 0 0 45%; /* Keeps conversation at 45% width */
|
| 163 |
display: flex;
|
| 164 |
flex-direction: column;
|
| 165 |
}
|
| 166 |
|
| 167 |
.right-panel {
|
| 168 |
+
flex: 0 0 55%; /* Keeps Broad-Board at 55% width */
|
| 169 |
border-left: 2px solid #555;
|
| 170 |
padding-left: 20px;
|
| 171 |
}
|
|
|
|
| 200 |
cursor: pointer;
|
| 201 |
}
|
| 202 |
|
| 203 |
+
.agent-box h3 {
|
| 204 |
+
margin: 0 0 10px 0;
|
| 205 |
+
font-size: 1rem;
|
| 206 |
+
color: #4CAF50;
|
| 207 |
+
text-align: center;
|
| 208 |
+
}
|
| 209 |
|
| 210 |
/* 🔹 THE CRITICAL FIX: Scrollbar per agent */
|
| 211 |
.agent-content {
|
|
|
|
| 218 |
padding: 5px;
|
| 219 |
}
|
| 220 |
|
| 221 |
+
.agent-content.revealed {
|
| 222 |
+
filter: blur(0);
|
| 223 |
+
}
|
| 224 |
|
| 225 |
+
/* Scrollbar Styling */
|
| 226 |
+
.agent-content::-webkit-scrollbar {
|
| 227 |
+
width: 6px;
|
| 228 |
+
}
|
| 229 |
|
| 230 |
+
.agent-content::-webkit-scrollbar-thumb {
|
| 231 |
+
background: #444;
|
| 232 |
+
border-radius: 3px;
|
| 233 |
+
}
|