GitHub Red Closed Icon Issues

Turns the issue color of closed issues from purple back to red.

当前为 2021-11-02 提交的版本,查看 最新版本

  1. /* ==UserStyle==
  2. @name GitHub Red Closed Icon Issues
  3. @namespace github.com/openstyles/stylus
  4. @version 1.0.6
  5. @description Turns the issue color of closed issues from purple back to red.
  6. @author obfuscatedgenerated, Katsute, krystian3w, iam-py-test
  7. @license No License
  8. ==/UserStyle== */
  9. @-moz-document domain("github.com") {
  10. /* Copyright (C) 2021 obfuscatedgenerated <userstyles.world/user/obfuscatedgenerated> */
  11. :root {
  12. --color-done-emphasis: #cb2536;
  13. }
  14. * {
  15. --color-done-emphasis: #cb2536;
  16. }
  17. .octicon-issue-closed {
  18. --color-done-fg: #cb2536 !important;
  19. }
  20.  
  21.  
  22. /* Copyright (C) 2021 Katsute <https://github.com/Katsute> */
  23. /* issue badge */
  24. span[title="Status: Closed"] .octicon-issue-closed {
  25. color: #F0F6Fc !important;
  26. }
  27. /* timeline */
  28. .TimelineItem-badge.color-bg-success-inverse {
  29. background-color: #238636 !important;
  30. }
  31. .TimelineItem-badge.color-bg-danger-inverse .octicon,
  32. .TimelineItem-badge.color-bg-success-inverse .octicon {
  33. color: #F0F6Fc !important;
  34. }
  35. }