Sidebar/Chats manage button: parent-hover reveal + clearer 'manage' text

Two related fixes for the Chats section header:
- The 'manage' label only slid out when the button itself was hovered.
  Add section-header-flex:hover to the reveal rule so hovering the sort
  icon (or anywhere in the section header) also opens the label.
- Parent-hover opacity bumped 0.45 → 0.85 so the 'manage' text reads
  much more clearly when revealed. Direct hover on the button still
  pushes to full opacity 1.
This commit is contained in:
pewdiepie-archdaemon
2026-06-10 22:44:50 +09:00
parent baa4449a03
commit 41980df6f1
+3 -2
View File
@@ -1251,7 +1251,7 @@ body.bg-pattern-sparkles {
#sessions-section .section-header-flex:hover .chats-manage-btn,
#sessions-section .chats-manage-btn:hover,
#sessions-section .chats-manage-btn:focus-visible {
opacity: 0.45 !important;
opacity: 0.85 !important;
}
#sessions-section .chats-manage-btn:hover,
#sessions-section .chats-manage-btn:focus-visible {
@@ -1282,7 +1282,8 @@ body.bg-pattern-sparkles {
transition: max-width 0.2s ease, opacity 0.18s ease, padding-right 0.18s ease;
}
#sessions-section .chats-manage-btn:hover .list-item-plus-label,
#sessions-section .chats-manage-btn:focus-visible .list-item-plus-label {
#sessions-section .chats-manage-btn:focus-visible .list-item-plus-label,
#sessions-section .section-header-flex:hover .chats-manage-btn .list-item-plus-label {
max-width: 80px;
padding-right: 4px;
}