|
85 | 85 | .vp-connecting-overlay { |
86 | 86 | position: absolute !important; |
87 | 87 | top: 64px !important; |
88 | | - bottom: 136px !important; |
| 88 | + bottom: 64px !important; |
89 | 89 | left: 0 !important; |
90 | 90 | right: 0 !important; |
91 | 91 | z-index: 9 !important; |
|
283 | 283 | .vp-live-status-bar { |
284 | 284 | position: absolute !important; |
285 | 285 | left: 50% !important; |
286 | | - bottom: 40px !important; |
| 286 | + bottom: 76px !important; |
287 | 287 | transform: translateX(-50%) !important; |
288 | 288 | z-index: 11 !important; |
289 | 289 | width: min(320px, calc(100% - 32px)) !important; |
|
328 | 328 | line-height: 1 !important; |
329 | 329 | } |
330 | 330 |
|
| 331 | +.vp-chat-overlay { |
| 332 | + position: absolute !important; |
| 333 | + top: 64px !important; |
| 334 | + bottom: 56px !important; |
| 335 | + left: 0 !important; |
| 336 | + right: 48px !important; |
| 337 | + z-index: 9 !important; |
| 338 | + display: flex !important; |
| 339 | + flex-direction: column !important; |
| 340 | + overflow: hidden !important; |
| 341 | + pointer-events: none !important; |
| 342 | +} |
| 343 | + |
| 344 | +.vp-chat-messages { |
| 345 | + display: flex !important; |
| 346 | + flex-direction: column !important; |
| 347 | + gap: 8px !important; |
| 348 | + overflow-y: auto !important; |
| 349 | + padding: 0 16px !important; |
| 350 | + max-height: 100% !important; |
| 351 | + margin-top: auto !important; |
| 352 | + pointer-events: auto !important; |
| 353 | + scrollbar-width: none !important; |
| 354 | +} |
| 355 | + |
| 356 | +.vp-chat-messages::-webkit-scrollbar { |
| 357 | + display: none !important; |
| 358 | +} |
| 359 | + |
| 360 | +.vp-chat-message { |
| 361 | + display: flex !important; |
| 362 | + flex-direction: row !important; |
| 363 | + align-items: flex-start !important; |
| 364 | + gap: 8px !important; |
| 365 | +} |
| 366 | + |
| 367 | +.vp-chat-avatar { |
| 368 | + width: 32px !important; |
| 369 | + height: 32px !important; |
| 370 | + border-radius: 9999px !important; |
| 371 | + object-fit: cover !important; |
| 372 | + flex-shrink: 0 !important; |
| 373 | + border: 1.5px solid rgba(255, 255, 255, 0.35) !important; |
| 374 | +} |
| 375 | + |
| 376 | +.vp-chat-content { |
| 377 | + display: flex !important; |
| 378 | + flex-direction: column !important; |
| 379 | + gap: 2px !important; |
| 380 | +} |
| 381 | + |
| 382 | +.vp-chat-username { |
| 383 | + color: rgba(255, 255, 255, 0.85) !important; |
| 384 | + font-size: 14px !important; |
| 385 | + line-height: 1 !important; |
| 386 | + font-weight: bold !important; |
| 387 | +} |
| 388 | + |
| 389 | +.vp-chat-text { |
| 390 | + color: #ffffff !important; |
| 391 | + font-size: 16px !important; |
| 392 | + line-height: 1 !important; |
| 393 | + word-break: break-word !important; |
| 394 | +} |
| 395 | + |
| 396 | +.vp-chat-input-bar { |
| 397 | + position: absolute !important; |
| 398 | + bottom: 0 !important; |
| 399 | + left: 0 !important; |
| 400 | + right: 0 !important; |
| 401 | + z-index: 9 !important; |
| 402 | + height: 56px !important; |
| 403 | + display: flex !important; |
| 404 | + align-items: center !important; |
| 405 | + padding: 0 16px !important; |
| 406 | +} |
| 407 | + |
| 408 | +.vp-chat-input-container { |
| 409 | + flex: 1 !important; |
| 410 | + display: flex !important; |
| 411 | + flex-direction: row !important; |
| 412 | + align-items: center !important; |
| 413 | + height: 40px !important; |
| 414 | + border: 1px solid #ffffff !important; |
| 415 | + border-radius: 9999px !important; |
| 416 | + padding: 0 6px 0 16px !important; |
| 417 | +} |
| 418 | + |
| 419 | +.vp-chat-input { |
| 420 | + flex: 1 !important; |
| 421 | + height: 100% !important; |
| 422 | + background: transparent !important; |
| 423 | + border: none !important; |
| 424 | + color: #ffffff !important; |
| 425 | + font-size: 14px !important; |
| 426 | + padding: 0 !important; |
| 427 | + outline: none !important; |
| 428 | +} |
| 429 | + |
| 430 | +.vp-chat-input::placeholder { |
| 431 | + color: rgba(255, 255, 255, 0.8) !important; |
| 432 | +} |
| 433 | + |
| 434 | +.vp-chat-send-btn { |
| 435 | + width: 32px !important; |
| 436 | + height: 32px !important; |
| 437 | + flex-shrink: 0 !important; |
| 438 | + display: flex !important; |
| 439 | + align-items: center !important; |
| 440 | + justify-content: center !important; |
| 441 | + border-radius: 9999px !important; |
| 442 | + background: transparent !important; |
| 443 | + border: none !important; |
| 444 | + cursor: pointer !important; |
| 445 | +} |
| 446 | + |
331 | 447 | @media (min-width: 768px) { |
332 | 448 | .vp-room { |
333 | 449 | bottom: 20px !important; |
|
0 commit comments