max / balanced_breakfast
- Co-Authored-By
- Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 file changed,
+228 insertions,
-250 deletions
| @@ -41,10 +41,9 @@ | |||
| 41 | 41 | not because order matters. Bands group related sections; cascade order is | |
| 42 | 42 | load-bearing only inside the RESPONSIVE LAYERS and TOUCH OVERRIDES bands. | |
| 43 | 43 | ||
| 44 | - | Note (2026-06-02): the BAND map below is the TARGET layout. Today's file | |
| 45 | - | still has rules grouped by their original feature-add order. Phase F5 (dedup | |
| 46 | - | sweep) moves rules into the correct BAND. Until then, the numbered section | |
| 47 | - | markers below are stable anchors regardless of file position. | |
| 44 | + | Sections are laid out in monotonic order matching this map (F5 D, 2026-07-12). | |
| 45 | + | Gaps in the numbering (3, 21, 25) are sections not yet needed; add them in | |
| 46 | + | their numbered slot. Keep new sections in order. | |
| 48 | 47 | ||
| 49 | 48 | BAND: FOUNDATIONS | |
| 50 | 49 | 1. Design System Variables — tokens (:root) | |
| @@ -243,6 +242,13 @@ | |||
| 243 | 242 | height: 100vh; | |
| 244 | 243 | } | |
| 245 | 244 | ||
| 245 | + | /* === 4. Layout shell — main =========================================== */ | |
| 246 | + | .main { | |
| 247 | + | display: flex; | |
| 248 | + | flex: 1; | |
| 249 | + | overflow: hidden; | |
| 250 | + | } | |
| 251 | + | ||
| 246 | 252 | /* === 5. Header ========================================================== */ | |
| 247 | 253 | .header { | |
| 248 | 254 | display: flex; | |
| @@ -315,6 +321,219 @@ | |||
| 315 | 321 | } | |
| 316 | 322 | .sort-select:focus { outline: none; border-color: var(--category-four); } | |
| 317 | 323 | ||
| 324 | + | /* === 6. Sidebar ======================================================== */ | |
| 325 | + | .sidebar { | |
| 326 | + | width: 220px; | |
| 327 | + | min-width: 220px; | |
| 328 | + | background-color: var(--surface-overlay); | |
| 329 | + | border-right: var(--border-width) solid var(--border); | |
| 330 | + | display: flex; | |
| 331 | + | flex-direction: column; | |
| 332 | + | overflow-y: auto; | |
| 333 | + | scrollbar-gutter: stable; | |
| 334 | + | } | |
| 335 | + | ||
| 336 | + | .sidebar h2 { | |
| 337 | + | padding: 0.75rem 1rem; | |
| 338 | + | font-size: 0.75rem; | |
| 339 | + | font-weight: 700; | |
| 340 | + | color: var(--content-muted); | |
| 341 | + | text-transform: uppercase; | |
| 342 | + | letter-spacing: 0.5px; | |
| 343 | + | border-bottom: var(--border-width) solid var(--border); | |
| 344 | + | } | |
| 345 | + | ||
| 346 | + | /* === 7. Items panel ==================================================== */ | |
| 347 | + | .items-panel { | |
| 348 | + | flex: 1; | |
| 349 | + | display: flex; | |
| 350 | + | flex-direction: column; | |
| 351 | + | overflow-y: auto; | |
| 352 | + | background-color: var(--surface-page); | |
| 353 | + | } | |
| 354 | + | ||
| 355 | + | .items-list { list-style: none; } | |
| 356 | + | ||
| 357 | + | /* Article rows: feed items + reading-list bookmarks. Uses the renderRow .row | |
| 358 | + | layout (icon / content / actions, flex + gap) plus article appearance + | |
| 359 | + | read/unread/selected/pinned state. Replaces the legacy .item-* layout. */ | |
| 360 | + | .row--article { | |
| 361 | + | padding: 0.75rem 1.25rem; | |
| 362 | + | border-bottom: 1px solid var(--border); | |
| 363 | + | border-left: 3px solid transparent; | |
| 364 | + | cursor: pointer; | |
| 365 | + | transition: background-color 0.15s; | |
| 366 | + | } | |
| 367 | + | .row--article:hover { background-color: var(--surface-overlay); } | |
| 368 | + | .row--article.is-unread { | |
| 369 | + | border-left-color: var(--danger); | |
| 370 | + | background-color: color-mix(in srgb, var(--danger) 6%, var(--surface-page)); | |
| 371 | + | } | |
| 372 | + | .row--article.is-read { color: var(--content-secondary); } | |
| 373 | + | .row--article.is-selected { | |
| 374 | + | background-color: var(--surface-sunken); | |
| 375 | + | border-left-color: var(--category-four); | |
| 376 | + | } | |
| 377 | + | .row--article.is-unread.is-selected { | |
| 378 | + | border-left-color: var(--danger); | |
| 379 | + | background-color: color-mix(in srgb, var(--danger) 12%, var(--surface-page)); | |
| 380 | + | } | |
| 381 | + | .row--article.is-pinned { border-left-color: var(--action); } | |
| 382 | + | .empty-icon { | |
| 383 | + | font-size: 2.5rem; | |
| 384 | + | margin-bottom: 0.75rem; | |
| 385 | + | opacity: 0.6; | |
| 386 | + | } | |
| 387 | + | ||
| 388 | + | /* Standalone empty-state block. The items/bookmarks empty rows use | |
| 389 | + | `<li class="empty-state">`; new surfaces use BB.ui.renderEmptyState(). | |
| 390 | + | <div class="empty-state"> | |
| 391 | + | <div class="empty-state-icon">...</div> | |
| 392 | + | <p class="empty-state-text">No items</p> | |
| 393 | + | <button class="btn btn-primary">Add one</button> | |
| 394 | + | </div> | |
| 395 | + | */ | |
| 396 | + | .empty-state { | |
| 397 | + | display: flex; | |
| 398 | + | flex-direction: column; | |
| 399 | + | align-items: center; | |
| 400 | + | justify-content: center; | |
| 401 | + | text-align: center; | |
| 402 | + | padding: 3rem 2rem; | |
| 403 | + | color: var(--content-muted); | |
| 404 | + | line-height: 1.6; | |
| 405 | + | gap: 0.75rem; | |
| 406 | + | } | |
| 407 | + | .empty-state-icon { | |
| 408 | + | font-size: 2.5rem; | |
| 409 | + | opacity: 0.6; | |
| 410 | + | } | |
| 411 | + | .empty-state-text { | |
| 412 | + | font-size: 0.9rem; | |
| 413 | + | color: var(--content-secondary); | |
| 414 | + | margin: 0; | |
| 415 | + | } | |
| 416 | + | .empty-state--compact { | |
| 417 | + | padding: 1.5rem 1rem; | |
| 418 | + | gap: 0.5rem; | |
| 419 | + | } | |
| 420 | + | .empty-state--compact .empty-state-icon { font-size: 1.5rem; } | |
| 421 | + | ||
| 422 | + | /* Control stack (star / pin + read dot) passed into renderRow's icon slot. | |
| 423 | + | The .row layout provides the gap to the content; no margin needed here. */ | |
| 424 | + | .article-controls { | |
| 425 | + | display: flex; | |
| 426 | + | flex-direction: column; | |
| 427 | + | align-items: center; | |
| 428 | + | min-width: 24px; | |
| 429 | + | } | |
| 430 | + | ||
| 431 | + | .star-btn { | |
| 432 | + | background: none; | |
| 433 | + | border: none; | |
| 434 | + | cursor: pointer; | |
| 435 | + | font-size: 1.1rem; | |
| 436 | + | color: var(--content-muted); | |
| 437 | + | transition: color 0.2s, transform 0.15s; | |
| 438 | + | padding: 0.25rem 0.4rem; | |
| 439 | + | margin: -0.25rem -0.4rem; | |
| 440 | + | line-height: 1; | |
| 441 | + | } | |
| 442 | + | .star-btn:hover { color: var(--category-four); transform: scale(1.1); } | |
| 443 | + | .star-btn.starred { color: var(--category-four); } | |
| 444 | + | ||
| 445 | + | .read-indicator { | |
| 446 | + | width: 7px; | |
| 447 | + | height: 7px; | |
| 448 | + | border-radius: 50%; | |
| 449 | + | margin-top: 0.4rem; | |
| 450 | + | } | |
| 451 | + | .read-indicator.unread { background-color: var(--danger); } | |
| 452 | + | ||
| 453 | + | /* Content column is renderRow's .row-content (flex:1; min-width:0). */ | |
| 454 | + | ||
| 455 | + | /* Header slot holds the author/time meta line (+ mobile source badge). */ | |
| 456 | + | .article-meta { | |
| 457 | + | display: flex; | |
| 458 | + | justify-content: space-between; | |
| 459 | + | align-items: flex-start; | |
| 460 | + | margin-bottom: 0.15rem; | |
| 461 | + | } | |
| 462 | + | .article-author { | |
| 463 | + | font-weight: 700; | |
| 464 | + | color: var(--danger); | |
| 465 | + | font-size: var(--font-size-md); | |
| 466 | + | } | |
| 467 | + | .article-time { color: var(--content-muted); font-size: var(--font-size-sm); } | |
| 468 | + | ||
| 469 | + | /* Title: two-line clamp (overrides .row-primary's single flex line). */ | |
| 470 | + | .row--article .row-primary { | |
| 471 | + | display: -webkit-box; | |
| 472 | + | -webkit-line-clamp: 2; | |
| 473 | + | -webkit-box-orient: vertical; | |
| 474 | + | overflow: hidden; | |
| 475 | + | font-weight: 400; | |
| 476 | + | color: var(--content); | |
| 477 | + | line-height: 1.4; | |
| 478 | + | font-size: var(--font-size-base); | |
| 479 | + | } | |
| 480 | + | .row--article .row-secondary { | |
| 481 | + | color: var(--content-secondary); | |
| 482 | + | font-size: var(--font-size-md); | |
| 483 | + | margin-top: 0.15rem; | |
| 484 | + | } | |
| 485 | + | /* .article-source-badge (mobile-only) lives in section 38. */ | |
| 486 | + | ||
| 487 | + | .load-more { padding: 1rem; text-align: center; } | |
| 488 | + | ||
| 489 | + | /* === 8. Detail panel =================================================== */ | |
| 490 | + | .detail-panel { | |
| 491 | + | width: 400px; | |
| 492 | + | min-width: 400px; | |
| 493 | + | background-color: var(--surface-overlay); | |
| 494 | + | border-left: var(--border-width) solid var(--border); | |
| 495 | + | display: none; | |
| 496 | + | flex-direction: column; | |
| 497 | + | overflow-y: auto; | |
| 498 | + | } | |
| 499 | + | ||
| 500 | + | .detail-header { | |
| 501 | + | display: flex; | |
| 502 | + | justify-content: flex-end; | |
| 503 | + | gap: 0.3rem; | |
| 504 | + | padding: 0.4rem; | |
| 505 | + | border-bottom: var(--border-width) solid var(--border); | |
| 506 | + | background-color: var(--surface-sunken); | |
| 507 | + | } | |
| 508 | + | ||
| 509 | + | .item-detail { padding: 1.25rem; } | |
| 510 | + | ||
| 511 | + | .detail-title { | |
| 512 | + | font-size: 1.15rem; | |
| 513 | + | margin-bottom: 0.75rem; | |
| 514 | + | color: var(--content); | |
| 515 | + | font-weight: 700; | |
| 516 | + | line-height: 1.4; | |
| 517 | + | } | |
| 518 | + | ||
| 519 | + | .detail-meta { | |
| 520 | + | display: flex; | |
| 521 | + | flex-wrap: wrap; | |
| 522 | + | gap: 0.6rem; | |
| 523 | + | margin-bottom: 0.75rem; | |
| 524 | + | color: var(--content-secondary); | |
| 525 | + | font-size: 0.8rem; | |
| 526 | + | padding-bottom: 0.75rem; | |
| 527 | + | border-bottom: var(--border-width) solid var(--border); | |
| 528 | + | } | |
| 529 | + | ||
| 530 | + | .detail-tags { | |
| 531 | + | display: flex; | |
| 532 | + | flex-wrap: wrap; | |
| 533 | + | gap: 0.4rem; | |
| 534 | + | margin-bottom: 0.75rem; | |
| 535 | + | } | |
| 536 | + | ||
| 318 | 537 | /* === 9. Buttons ======================================================== | |
| 319 | 538 | Canonical: .btn (+ .btn-primary, .btn-secondary, .btn-success, .btn-danger, | |
| 320 | 539 | .btn-icon, .btn-text, .btn-link; size .btn-sm; state .btn-loading). | |
| @@ -578,385 +797,101 @@ | |||
| 578 | 797 | font-weight: 600; | |
| 579 | 798 | } | |
| 580 | 799 | ||
| 581 | - | /* === 4. Layout shell — main =========================================== */ | |
| 582 | - | .main { | |
| 583 | - | display: flex; | |
| 584 | - | flex: 1; | |
| 585 | - | overflow: hidden; | |
| 586 | - | } | |
| 587 | - | ||
| 588 | - | /* === 6. Sidebar ======================================================== */ | |
| 589 | - | .sidebar { | |
| 590 | - | width: 220px; | |
| 591 | - | min-width: 220px; | |
| 592 | - | background-color: var(--surface-overlay); | |
| 593 | - | border-right: var(--border-width) solid var(--border); | |
| 594 | - | display: flex; | |
| 595 | - | flex-direction: column; | |
| 596 | - | overflow-y: auto; | |
| 597 | - | scrollbar-gutter: stable; | |
| 598 | - | } | |
| 599 | - | ||
| 600 | - | .sidebar h2 { | |
| 601 | - | padding: 0.75rem 1rem; | |
| 602 | - | font-size: 0.75rem; | |
| 603 | - | font-weight: 700; | |
| 604 | - | color: var(--content-muted); | |
| 605 | - | text-transform: uppercase; | |
| 606 | - | letter-spacing: 0.5px; | |
| 607 | - | border-bottom: var(--border-width) solid var(--border); | |
| 608 | - | } | |
| 609 | - | ||
| 610 | - | /* === 20. Sources list — sidebar entries ================================ | |
| 611 | - | Charter target (F5): .source-item collapses onto .card --row. | |
| 800 | + | /* === 10. Forms ========================================================= | |
| 801 | + | Canonical: .form-group + .form-input. Charter target (F5): split | |
| 802 | + | .form-input into .form-input / .form-select / .form-textarea so visual | |
| 803 | + | treatment per kind is targetable; add .form-label class on labels; | |
| 804 | + | add BB.ui.renderFormField helper. | |
| 612 | 805 | ========================================================================== */ | |
| 613 | - | .sources-list { list-style: none; padding: 0.25rem 0; } | |
| 614 | - | ||
| 615 | - | .source-item { | |
| 616 | - | display: flex; | |
| 617 | - | justify-content: space-between; | |
| 618 | - | align-items: center; | |
| 619 | - | padding: 0.6rem 1rem; | |
| 620 | - | cursor: pointer; | |
| 621 | - | transition: background-color 0.15s; | |
| 622 | - | min-height: 2.5rem; | |
| 623 | - | border-left: 3px solid transparent; | |
| 624 | - | } | |
| 625 | - | .source-item:hover { background-color: var(--surface-sunken); } | |
| 626 | - | .source-item.active { | |
| 627 | - | background-color: var(--surface-sunken); | |
| 628 | - | border-left-color: var(--category-four); | |
| 629 | - | } | |
| 630 | - | ||
| 631 | - | .source-name { | |
| 632 | - | flex: 1; | |
| 633 | - | white-space: nowrap; | |
| 634 | - | overflow: hidden; | |
| 635 | - | text-overflow: ellipsis; | |
| 636 | - | font-weight: 600; | |
| 637 | - | font-size: 0.875rem; | |
| 638 | - | } | |
| 639 | - | ||
| 640 | - | .source-actions { | |
| 641 | - | display: flex; | |
| 642 | - | align-items: center; | |
| 643 | - | gap: 0.3rem; | |
| 644 | - | } | |
| 645 | - | ||
| 646 | - | .source-count { | |
| 647 | - | background-color: var(--surface-page); | |
| 648 | - | padding: 0.1rem 0.4rem; | |
| 649 | - | border-radius: var(--radius-xl); | |
| 650 | - | font-size: 0.7rem; | |
| 651 | - | color: var(--content-muted); | |
| 652 | - | border: var(--border-width) solid var(--border); | |
| 653 | - | min-width: 1.8rem; | |
| 654 | - | text-align: center; | |
| 655 | - | } | |
| 656 | - | .source-count.all-read { | |
| 657 | - | color: var(--success); | |
| 658 | - | border-color: var(--success); | |
| 659 | - | } | |
| 660 | - | ||
| 661 | - | .source-delete { | |
| 662 | - | display: none; | |
| 663 | - | background: none; | |
| 664 | - | border: none; | |
| 665 | - | color: var(--content-muted); | |
| 666 | - | cursor: pointer; | |
| 667 | - | font-size: 0.9rem; | |
| 668 | - | padding: 0 0.2rem; | |
| 669 | - | line-height: 1; | |
| 670 | - | } | |
| 671 | - | .source-delete:hover { color: var(--danger); } | |
| 672 | - | .source-item:hover .source-delete { display: inline; } | |
| 673 | - | ||
| 674 | - | /* === 7. Items panel ==================================================== */ | |
| 675 | - | .items-panel { | |
| 676 | - | flex: 1; | |
| 677 | - | display: flex; | |
| 678 | - | flex-direction: column; | |
| 679 | - | overflow-y: auto; | |
| 680 | - | background-color: var(--surface-page); | |
| 681 | - | } | |
| 682 | - | ||
| 683 | - | .items-list { list-style: none; } | |
| 684 | - | ||
| 685 | - | /* Article rows: feed items + reading-list bookmarks. Uses the renderRow .row | |
| 686 | - | layout (icon / content / actions, flex + gap) plus article appearance + | |
| 687 | - | read/unread/selected/pinned state. Replaces the legacy .item-* layout. */ | |
| 688 | - | .row--article { | |
| 689 | - | padding: 0.75rem 1.25rem; | |
| 690 | - | border-bottom: 1px solid var(--border); | |
| 691 | - | border-left: 3px solid transparent; | |
| 692 | - | cursor: pointer; | |
| 693 | - | transition: background-color 0.15s; | |
| 694 | - | } | |
| 695 | - | .row--article:hover { background-color: var(--surface-overlay); } | |
| 696 | - | .row--article.is-unread { | |
| 697 | - | border-left-color: var(--danger); | |
| 698 | - | background-color: color-mix(in srgb, var(--danger) 6%, var(--surface-page)); | |
| 699 | - | } | |
| 700 | - | .row--article.is-read { color: var(--content-secondary); } | |
| 701 | - | .row--article.is-selected { | |
| 702 | - | background-color: var(--surface-sunken); | |
| 703 | - | border-left-color: var(--category-four); | |
| 704 | - | } | |
| 705 | - | .row--article.is-unread.is-selected { | |
| 706 | - | border-left-color: var(--danger); | |
| 707 | - | background-color: color-mix(in srgb, var(--danger) 12%, var(--surface-page)); | |
| 708 | - | } | |
| 709 | - | .row--article.is-pinned { border-left-color: var(--action); } | |
| 710 | - | .empty-icon { | |
| 711 | - | font-size: 2.5rem; | |
| 712 | - | margin-bottom: 0.75rem; | |
| 713 | - | opacity: 0.6; | |
| 714 | - | } | |
| 715 | - | ||
| 716 | - | /* Standalone empty-state block. The items/bookmarks empty rows use | |
| 717 | - | `<li class="empty-state">`; new surfaces use BB.ui.renderEmptyState(). | |
| 718 | - | <div class="empty-state"> | |
| 719 | - | <div class="empty-state-icon">...</div> | |
| 720 | - | <p class="empty-state-text">No items</p> | |
| 721 | - | <button class="btn btn-primary">Add one</button> | |
| 722 | - | </div> | |
| 723 | - | */ | |
| 724 | - | .empty-state { | |
| 725 | - | display: flex; | |
| 726 | - | flex-direction: column; | |
| 727 | - | align-items: center; | |
| 728 | - | justify-content: center; | |
| 729 | - | text-align: center; | |
| 730 | - | padding: 3rem 2rem; | |
| 731 | - | color: var(--content-muted); | |
| 732 | - | line-height: 1.6; | |
| 733 | - | gap: 0.75rem; | |
| 734 | - | } | |
| 735 | - | .empty-state-icon { | |
| 736 | - | font-size: 2.5rem; | |
| 737 | - | opacity: 0.6; | |
| 738 | - | } | |
| 739 | - | .empty-state-text { | |
| 740 | - | font-size: 0.9rem; | |
| 741 | - | color: var(--content-secondary); | |
| 742 | - | margin: 0; | |
| 743 | - | } | |
| 744 | - | .empty-state--compact { | |
| 745 | - | padding: 1.5rem 1rem; | |
| 746 | - | gap: 0.5rem; | |
| 747 | - | } | |
| 748 | - | .empty-state--compact .empty-state-icon { font-size: 1.5rem; } | |
| 749 | - | ||
| 750 | - | /* Control stack (star / pin + read dot) passed into renderRow's icon slot. | |
| 751 | - | The .row layout provides the gap to the content; no margin needed here. */ | |
| 752 | - | .article-controls { | |
| 753 | - | display: flex; | |
| 754 | - | flex-direction: column; | |
| 755 | - | align-items: center; | |
| 756 | - | min-width: 24px; | |
| 757 | - | } | |
| 758 | - | ||
| 759 | - | .star-btn { | |
| 760 | - | background: none; | |
| 761 | - | border: none; | |
| 762 | - | cursor: pointer; | |
| 763 | - | font-size: 1.1rem; | |
| 764 | - | color: var(--content-muted); | |
| 765 | - | transition: color 0.2s, transform 0.15s; | |
| 766 | - | padding: 0.25rem 0.4rem; | |
| 767 | - | margin: -0.25rem -0.4rem; | |
| 768 | - | line-height: 1; | |
| 769 | - | } | |
| 770 | - | .star-btn:hover { color: var(--category-four); transform: scale(1.1); } | |
| 771 | - | .star-btn.starred { color: var(--category-four); } | |
| 772 | - | ||
| 773 | - | .read-indicator { | |
| 774 | - | width: 7px; | |
| 775 | - | height: 7px; | |
| 776 | - | border-radius: 50%; | |
| 777 | - | margin-top: 0.4rem; | |
| 778 | - | } | |
| 779 | - | .read-indicator.unread { background-color: var(--danger); } | |
| 780 | - | ||
| 781 | - | /* Content column is renderRow's .row-content (flex:1; min-width:0). */ | |
| 782 | - | ||
| 783 | - | /* Header slot holds the author/time meta line (+ mobile source badge). */ | |
| 784 | - | .article-meta { | |
| 785 | - | display: flex; | |
| 786 | - | justify-content: space-between; | |
| 787 | - | align-items: flex-start; | |
| 788 | - | margin-bottom: 0.15rem; | |
| 789 | - | } | |
| 790 | - | .article-author { | |
| 791 | - | font-weight: 700; | |
| 792 | - | color: var(--danger); | |
| 793 | - | font-size: var(--font-size-md); | |
| 794 | - | } | |
| 795 | - | .article-time { color: var(--content-muted); font-size: var(--font-size-sm); } | |
| 796 | - | ||
| 797 | - | /* Title: two-line clamp (overrides .row-primary's single flex line). */ | |
| 798 | - | .row--article .row-primary { | |
| 799 | - | display: -webkit-box; | |
| 800 | - | -webkit-line-clamp: 2; | |
| 801 | - | -webkit-box-orient: vertical; | |
| 802 | - | overflow: hidden; | |
| 803 | - | font-weight: 400; | |
| 804 | - | color: var(--content); | |
| 805 | - | line-height: 1.4; | |
| 806 | - | font-size: var(--font-size-base); | |
| 807 | - | } | |
| 808 | - | .row--article .row-secondary { | |
| 809 | - | color: var(--content-secondary); | |
| 810 | - | font-size: var(--font-size-md); | |
| 811 | - | margin-top: 0.15rem; | |
| 812 | - | } | |
| 813 | - | /* .article-source-badge (mobile-only) lives in section 38. */ | |
| 814 | - | ||
| 815 | - | .load-more { padding: 1rem; text-align: center; } | |
| 816 | - | ||
| 817 | - | /* === 22. Reader-expanded mode ========================================= | |
| 818 | - | Hides items panel and expands detail to full width. */ | |
| 819 | - | .main.reader-expanded .items-panel { | |
| 820 | - | display: none; | |
| 821 | - | } | |
| 822 | - | ||
| 823 | - | .main.reader-expanded .detail-panel { | |
| 824 | - | flex: 1; | |
| 825 | - | width: auto; | |
| 826 | - | min-width: 0; | |
| 827 | - | border-left: none; |
Lines truncated