ankit / stylebot

Change the appearance of the web instantly
https://stylebot.dev/
MIT License
1.4k stars 208 forks source link

[Bug] Stylebot div causes some websites to be unusable. #567

Closed sflanker closed 4 years ago

sflanker commented 4 years ago

Describe the bug

The injected stylebot div can cause a page to be unusable if the page's css defaults div width to 100% This div needs to be less intrusive even given strange css defaults for a root level div element.

To Reproduce

Minimal Example

<html>
  <head>
<style>
body {
    height: 100%;
    width: 100%;
}
div {
    width: 100%;
}
</style>
  </head>
<body>

<div id="wrap">
<a href="#WTF_STYLEBOT">Your injected div sucks</a>
</div>
<body>

Expected behavior

Should be able to click the link and have the tag added to the url.