GitHub Red Closed Icon Issues

back reddish color icon for closed github issues

目前為 2021-10-30 提交的版本,檢視 最新版本

  1. /* ==UserStyle==
  2. @name GitHub Red Closed Icon Issues
  3. @namespace github.com/openstyles/stylus
  4. @version 1.0.1
  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. /* stylus only as long not enable tabs.insertCSS() */
  15. .issue-closed-done .TimelineItem-badge[class*="color-bg-danger"][style*="important"] {
  16. filter: hue-rotate(95deg);
  17. }
  18. .issue-closed-done .TimelineItem-badge[class*="color-bg-danger"][style*="important"] > svg {
  19. filter: none;
  20. }
  21. /* end of stylus only as long not enable tabs.insertCSS() */
  22. /* issue hover */
  23. .Popover .octicon.octicon-issue-closed.color-text-danger {
  24. color: #F85149 !important;
  25. }
  26.  
  27. /* subscriptions */
  28. .issue-closed-done .octicon.octicon-issue-closed.color-text-danger {
  29. color: #F85149 !important;
  30. }
  31.  
  32. /* issue badge */
  33. span[title="Status: Closed"] {
  34. background-color: #F85149 !important;
  35. }
  36.  
  37. span[title="Status: Closed"] .octicon-issue-closed {
  38. color: #F0F6Fc !important;
  39. }
  40.  
  41. /* timeline */
  42. .TimelineItem-badge.color-bg-success-inverse {
  43. background-color: #238636 !important;
  44. }
  45.  
  46. .TimelineItem-badge.color-bg-danger-inverse {
  47. background-color: #F85149 !important;
  48. }
  49.  
  50. .TimelineItem-badge.color-bg-danger-inverse .octicon,
  51. .TimelineItem-badge.color-bg-success-inverse .octicon {
  52. color: #F0F6Fc !important;
  53. }
  54.  
  55. /* projects beta */
  56. svg[aria-label="Closed issue"] {
  57. color: #F85149 !important;
  58. }
  59. }