Remove some items cannot be synchronized using userstyles

How to get rid of that message, I don’t care about it and I don’t want to delete my local data and reupload like here, could you just give me a userstyle I can copy and paste to the css please?

image

This element is

<div style="width: 1085px; height: 50px; display: flex; align-items: center; padding-left: 10px; background-color: rgb(1, 63, 116);"><span role="alert" aria-live="polite" style="font-family: Roboto; font-size: 12px; line-height: 1.6em; color: rgb(221, 221, 221);"><span>Some items cannot be synchronised. <a href="#" style="color: rgb(255, 255, 130); text-decoration: underline;">View them now</a></span></span></div>

inside #profile-default>div

Sure. Try this CSS in userchrome.css:

div.profile-default > div[style^="color:"] > div[style^="width:"] {
  display: none !important;
  z-index: -1 !important;
}
1 Like

it works, thanks! Btw it has to be userchrome.css, not userstyle if anybody wondered