GitHub Red Closed Icon Issues

back reddish color icon for closed github issues

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

  1. /* ==UserStyle==
  2. @name GitHub Red Closed Icon Issues
  3. @namespace github.com/openstyles/stylus
  4. @version 1.0.10
  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. :root {
  11. --rcie-issue-closed: #F85149;
  12. --rcie-white: #F0F6Fc;
  13. }
  14.  
  15. /* issue hover */
  16. .Popover .octicon.octicon-issue-closed.color-text-danger {
  17. color: var(--rcie-issue-closed) !important;
  18. }
  19.  
  20. /* subscriptions */
  21. .issue-closed-done .octicon.octicon-issue-closed.color-text-danger {
  22. color: var(--rcie-issue-closed) !important;
  23. }
  24.  
  25. /* issue badge */
  26. span[title="Status: Closed"] {
  27. background-color: var(--rcie-issue-closed) !important;
  28. }
  29.  
  30. span[title="Status: Closed"] .octicon-issue-closed {
  31. color: var(--rcie-white) !important;
  32. }
  33. }
  34.  
  35. @-moz-document regexp("^https?:\\/\\/(www\\.)?github.com\\/[^\\/]+\\/[^\\/]+\\/issues.*$") {
  36. /* issue icon */
  37. .issue-closed-done .octicon-issue-closed {
  38. color: var(--rcie-issue-closed) !important;
  39. }
  40. /* timeline */
  41. .TimelineItem-badge.color-bg-done-emphasis {
  42. background-color: var(--rcie-issue-closed) !important;
  43. }
  44.  
  45. .TimelineItem-badge.color-bg-done-emphasis .octicon {
  46. color: var(--rcie-white) !important;
  47. }
  48.  
  49. /* projects beta */
  50. svg[aria-label="Closed issue"] {
  51. color: var(--rcie-issue-closed) !important;
  52. }
  53. }