GitHub Red Closed Icon Issues

back reddish color icon for closed github issues

As of 2021-10-30. See the latest version.

  1. /* ==UserStyle==
  2. @name GitHub Red Closed Icon Issues
  3. @namespace github.com/openstyles/stylus
  4. @version 1.0.0
  5. @description back reddish color icon for closed github issues
  6. @author Katsute, krystian3w, iam-py-test
  7. ==/UserStyle== */
  8. @-moz-document domain("github.com") {
  9. /* Copyright (C) 2021 Katsute <https://github.com/Katsute> */
  10. /* issue icon */
  11. .issue-closed-done .octicon-issue-closed {
  12. color: #F85149 !important;
  13. }
  14.  
  15. /* issue hover */
  16. .Popover .octicon.octicon-issue-closed.color-text-danger {
  17. color: #F85149 !important;
  18. }
  19.  
  20. /* subscriptions */
  21. .issue-closed-done .octicon.octicon-issue-closed.color-text-danger {
  22. color: #F85149 !important;
  23. }
  24.  
  25. /* issue badge */
  26. span[title="Status: Closed"] {
  27. background-color: #F85149 !important;
  28. }
  29.  
  30. span[title="Status: Closed"] .octicon-issue-closed {
  31. color: #F0F6Fc !important;
  32. }
  33.  
  34. /* timeline */
  35. .TimelineItem-badge.color-bg-success-inverse {
  36. background-color: #238636 !important;
  37. }
  38.  
  39. .TimelineItem-badge.color-bg-danger-inverse {
  40. background-color: #F85149 !important;
  41. }
  42.  
  43. .TimelineItem-badge.color-bg-danger-inverse .octicon,
  44. .TimelineItem-badge.color-bg-success-inverse .octicon {
  45. color: #F0F6Fc !important;
  46. }
  47.  
  48. /* projects beta */
  49. svg[aria-label="Closed issue"] {
  50. color: #F85149 !important;
  51. }
  52. }