Revision of List of CSS styles that fixes some dynamic websites from Tue, 07/07/2015 - 20:02

The revisions let you track differences between multiple versions of a post.

Websites often use JavaScript to add some dynamism to the user experience. But this also mean that there will be issues if JavaScript is disabled. Fortunately CSS can be used to make some workarounds for this issues.
CSS styles can be installed on the user browser using Stylish

Ebay

Ebay warning

@-moz-document domain("ebay.com") {
  div.nojs-msk {display: none;}
  div.nojs-msg.shdw {display: none;}
}

YouTube

Youtube description

@-moz-document domain("youtube.com") {
  .yt-uix-expander-collapsed #watch-description-text {
    max-height:10000px;
    overflow:hidden
  }
  button#watch-more-related-button {display: none;}
  div#watch-discussion {display: none;}
  .yt-uix-expander .yt-uix-expander-collapsed-body, .yt-uix-expander-collapsed .yt-uix-expander-body {display: inline;}
  button.yt-uix-button.yt-uix-button-size-default.yt-uix-button-expander.yt-uix-expander-head.yt-uix-expander-collapsed-body.yt-uix-gen204 {display: none;}
  button.yt-uix-button.yt-uix-button-size-default.yt-uix-button-expander.yt-uix-expander-head.yt-uix-expander-body {display: none;}
}

Minetest forums

@-moz-document domain("forum.minetest.net") {
  .spoiler_content {display: inline !important;}
}
AttachmentSize
ebay.png272.02 KB
youtube.png69.86 KB

Revisions

07/07/2015 - 20:02
danieru