Broken needs updating!
They must have changed or updated since January my message list items are in an all white box, and the header top nav bar is still the blue circuit pic that MS provides. Can you confirm or is it just me?
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
https://1drv.ms/i/s!AhSqjTYUuHPKgcQCG0lDLd6ZlxFBRA
I really love the overall look so do hope it's something that can be fixed!
EDIT: Sorry meant to answer - it is Chrome running the converted userscript installed from here (userstyles.org) but since it's all just CSS styling there really can't be too many conversion issues. If it were lots of Javascript functions or something there could be more issues but the Stylish extension code is really just CSS. Let me know what else I can provide to help debug. Here is another screenshot to help show the element showing white for me:
https://1drv.ms/i/s!AhSqjTYUuHPKgcQD-InftpRLh_NO0Q
EDIT: Even forced a new fresh install and the code didn't change. Can you tell me what line or element you added the !important to?
background-color: #000000 !important;
}
Here's the fix for now below but there are still pretty major errors in here causing tons of dark on dark text in message bodies, etc.
These are basic CSS elements missing so I'm not clear on how Stylish would have ever been able to just magically fill in what wasn't there. Perhaps you were really running a later DEV version on your machine or something as far as I can tell, without what i just added no CSS interpreter in the world would have colored the inactive message list background dark like you showed - so I'd hang on to your local code it's clearly got fixes in it not present in this online version!
Fix (Once I saw how many other issues, I just added the right element and saw no reason to remove the one you had put in and left it purely for location reference):
https://1drv.ms/i/s!AhSqjTYUuHPKgcQfRn8xqLNMC_y8dA
So to confirm the missing element was "._lvv_w._lvv_y._lvv_z._lvv_x.listItemDefaultBackground"
Screenshot of it after this addition(you can also see how message body etc much dark on dark unreadable text):
https://1drv.ms/i/s!AhSqjTYUuHPKgcQgtpDlFOcQq9Jd8A
Again I see a ton of even auto-generated one-time elements in the CSS that are probably a 10 to 1 (or more) that could be eliminated by simply inserting the correct parent element and it seems with the disposable one-time ones that I see that maybe as you debugged this, they were changing on the fly so maybe you just added the new dynamic ones as you kind of fought with it.
Either way when I have some time I like the look not trying to be overly critical but it is a lot of work I think to fix it all....I will either try to help you consolidate it greatly and fix it more, or I may just do a remix look perhaps more from scratch. I'm single dad of 2 babies so time these days is a big commodity!
EDIT: Just got burned for quickly doing what you've been doing. :)
Because, when I switched to the JUNK folder, that element dynamically changed.
The fix - as is whenever possible is to use the parent.
So, I just (re)confirmed that changing that entire line/section to this below is the "best practice" and WORKING fix:
im more determined than skilled, i just code and code til il looks the way i want. i learned css from google.
background-color: #000000 !important;
}