GitHub Red Closed Icon Issues

back reddish color icon for closed github issues

目前為 2021-11-03 提交的版本,檢視 最新版本

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