Skip to content

Commit

Permalink
fix: Fix layout thrashing in options page
Browse files Browse the repository at this point in the history
Fixes #708.
  • Loading branch information
birtles committed Aug 2, 2021
1 parent f354ad9 commit e8073d4
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Next version

- Fixed a case where the options page would flicker incessantly
([#708](https://github.com/birchill/10ten-ja-reader/discussions/708)).

## v1.2.0 (2021-07-29) (Firefox, Chrome, Safari, Edge)

- Added an option to display tabs on the sides or hide them altogether
Expand Down
10 changes: 10 additions & 0 deletions css/options.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
:root.firefox {
/*
* Stop Firefox's scrollbars from disappearing and re-appearing triggering
* possible infinite updates.
*
* See: https://github.com/birchill/10ten-ja-reader/issues/708
*/
overflow: hidden;
}

/*
* Reproduce some styles from Firefox's browser_styles for other browsers' sake
*/
Expand Down

0 comments on commit e8073d4

Please sign in to comment.