Social Fixer user interface

About: Facebook Midnight Black (MOVED)
Hi, this makes the interface of Social Fixer (socialfixer.com) -- FB browser extension -- unusable. It hides the outlines and contents of all checkmarks in the settings UI (several dozen of them).

These two changes 'fix' it -- the Social Fixer UI is still in glaringly bright white, it doesn't apply the dark skin to that UI, but it *works*:

#facebook ._-kb label:not([for*='sfx']) { background-color: transparent !important; }
label:not([for*='sfx']) { -webkit-box-shadow: 0 0 0 !important; box-shadow: 0 0 0 !important; }

(these are out of the middle of longer statements, I assume you'll be able to figure out...)

Comments

  • Whoops, sorry, this doesn't fix all instances since not all are labeled with 'for='. Stand by.
  • Ok, unfortunately, in order to avoid all affected labels, it needs:

    #facebook ._-kb label:not([for^='sfx']):not([id^='filters_enabled']):not([class*='sfx_']) { background-color: transparent !important; }
    label:not([for^='sfx']):not([id^='filters_enabled']):not([class*='sfx_']) { -webkit-box-shadow: 0 0 0 !important; box-shadow: 0 0 0 !important; }
    
  • Sorry, I don't support 3rd party plugins.
Sign In or Register to comment.