Skip to content

Outlook.office.com - Highlight new emails by alexmwalker

Screenshot of Outlook.office.com - Highlight new emails

Details

Authoralexmwalker

LicenseMIT

Categoryhttps://outlook.office.com

Created

Updated

Size482 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

All unread emails in Outlook have a more distinctive orange left-border added to them.

Notes

I find it difficult to notice new, unread emails when they arrive on Outlook online - I think this is especially the case when using dark mode.

I've written a simple rule that uses their aria-label to add a thick orange left border to any unread emails. It works. What more can I say?

Source code

/* ==UserStyle==
@name         Outlook.office.com - Highlight new emails
@version      20221124.00.14
@namespace    userstyles.world/user/alexmwalker
@description  All unread emails in Outlook have a more distinctive orange left-border added to them.
@author       alexmwalker
@license      No License
==/UserStyle== */

@-moz-document domain("outlook.office.com") {


div[aria-label^="Unread"]{
    background: orange;
    color: #fff;
     padding-left: 1rem;
}
}

Reviews

No reviews yet.