dark_theme: Clean up read receipts modal styles.

Fixes part of #35880.
This commit is contained in:
Sayam Samal
2025-09-09 15:47:20 +05:30
committed by Tim Abbott
parent 093ce93fa4
commit f724ad7a33
2 changed files with 8 additions and 13 deletions

View File

@@ -509,17 +509,6 @@
}
}
#read_receipts_modal .read_receipts_list li {
&:hover {
background-color: hsl(0deg 0% 100% / 5%);
}
&:active,
&:focus {
background-color: hsl(0deg 0% 100% / 10%);
}
}
.help_link_widget:hover {
color: inherit;
}

View File

@@ -290,12 +290,18 @@
line-height: 1.625em; /* 26px at 16px font-size at 14px em */
&:hover {
background-color: hsl(0deg 0% 0% / 5%);
background-color: light-dark(
hsl(0deg 0% 0% / 5%),
hsl(0deg 0% 100% / 5%)
);
}
&:active,
&:focus {
background-color: hsl(0deg 0% 0% / 10%);
background-color: light-dark(
hsl(0deg 0% 0% / 10%),
hsl(0deg 0% 100% / 10%)
);
outline: none;
}
}