StackOverflow sticky votes

Makes the upvote/downvote buttons and vote count on StackOverflow and StackExchange sticky, so you don't have to scroll up to upvote a long answer.

  1. /* ==UserStyle==
  2. @name StackOverflow sticky votes
  3. @description Makes the upvote/downvote buttons and vote count on StackOverflow and StackExchange sticky, so you don't have to scroll up to upvote a long answer.
  4. @match *://*.stackoverflow.com/*
  5. @include *.stackexchange.com/*
  6. @license MIT
  7. @version 0.0.1.20230509012311
  8. @namespace https://greasyfork.org/users/1075775
  9. ==/UserStyle== */
  10.  
  11. #answers .votecell .js-voting-container,
  12. #question .votecell .js-voting-container {
  13. position: sticky;
  14. top: 60px;
  15. }