honestbleeps / Reddit-Enhancement-Suite

Reddit Enhancement Suite
http://redditenhancementsuite.com
GNU General Public License v3.0
4.15k stars 879 forks source link

Style checkbox incidentally hidden by old naut themes, possibly others #2789

Open githue opened 8 years ago

githue commented 8 years ago

Example: https://www.reddit.com/r/web_design

.titlebox form.toggle,
.leavemoderator,
.titlebox .tagline a.author,
.sidebox .subtitle {
  display: none;
}

Now that the container element for the subreddit style checkbox is <form class="toggle">, it's being targeted by themes that weren't doing so previously.

My suggestion is to revert to the old HTML including some of the inline styles like display: block !important; position: static !important;, but leave out z-index.

jewel-andraia commented 8 years ago

That sounds like a good compromise. I added some classnames in for moderator to style with, too.

jewel-andraia commented 8 years ago

How about adding to RESupdates.css something like:

.res form.res-sr-style-toggle { 
    display: block;
    position: static !important;
    /* anything else */
}