diff options
author | Drew DeVault <sir@cmpwn.com> | 2020-10-23 12:03:23 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-10-23 12:03:23 -0400 |
commit | 8764397b7d641450009436196f300dadbe770f1d (patch) | |
tree | e0e2cb411992b3b251e37347985935979e0a17f8 /themes/alps | |
parent | 2d73c882df4b9c24d31afa53a1ddd1d5b501cd85 (diff) | |
download | alps-8764397b7d641450009436196f300dadbe770f1d.tar.gz alps-8764397b7d641450009436196f300dadbe770f1d.zip |
alps theme: fix borders on each unread row
This addresses an oversight from when the fifth column (flags) was
introduced.
Diffstat (limited to 'themes/alps')
-rw-r--r-- | themes/alps/assets/style.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/alps/assets/style.css b/themes/alps/assets/style.css index 7fd97ee..507342f 100644 --- a/themes/alps/assets/style.css +++ b/themes/alps/assets/style.css @@ -326,11 +326,11 @@ main.create-update .event-date input { opacity: 1; } -.message-list-unread:nth-child(4n+1) { +.message-list-unread:nth-child(5n+1) { border-left: 1px solid #f2f2f2; } -.message-list-unread:nth-child(4n+4) { +.message-list-unread:nth-child(5n+5) { border-right: 1px solid #f2f2f2; } |