Greasy Fork is available in English.

GitHub Red Closed Icon Issues

back reddish color icon for closed github issues

Fra 02.11.2021. Se den seneste versjonen.

  1. /* ==UserStyle==
  2. @name GitHub Red Closed Icon Issues
  3. @namespace github.com/openstyles/stylus
  4. @version 1.0.5
  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. span > svg.octicon-issue-closed {
  12. color: #F85149 !important;
  13. }
  14. .issue-closed-done .TimelineItem-badge[class*="done"] {
  15. background-color: #F85149 !important;
  16. }
  17. /* issue hover */
  18. .Popover .octicon.octicon-issue-closed.color-text-danger {
  19. color: #F85149 !important;
  20. }
  21. /* subscriptions */
  22. .issue-closed-done .octicon.octicon-issue-closed.color-text-danger {
  23. color: #F85149 !important;
  24. }
  25. /* issue badge */
  26. span[title="Status: Closed"] {
  27. background-color: #F85149 !important;
  28. }
  29. span[title="Status: Closed"] .octicon-issue-closed {
  30. color: #F0F6Fc !important;
  31. }
  32. /* timeline */
  33. .TimelineItem-badge.color-bg-success-inverse {
  34. background-color: #238636 !important;
  35. }
  36. .TimelineItem-badge.color-bg-danger-inverse {
  37. background-color: #F85149 !important;
  38. }
  39. .TimelineItem-badge.color-bg-danger-inverse .octicon,
  40. .TimelineItem-badge.color-bg-success-inverse .octicon {
  41. color: #F0F6Fc !important;
  42. }
  43. /* projects beta */
  44. svg[aria-label="Closed issue"] {
  45. color: #F85149 !important;
  46. }
  47. }