Guest User

Rainbow Border for some about pages

a guest
Jul 2nd, 2026
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. @-moz-document url(about:addons),
  2. url(about:config),
  3. url(about:profiles),
  4. url(about:preferences),
  5. url(about:support),
  6. url(about:translations#src=detect) {
  7.  
  8. :root {
  9. --rainbow: linear-gradient(45deg, red 0%, orange 16.66%, yellow 33.33%, green 50%, blue 66.66%, indigo 83.33%, violet 100%) !important;
  10. }
  11.  
  12. input[type="search"],
  13. #about-config-search[type="search"] {
  14. outline: none !important;
  15. border-color: transparent !important;
  16. border-width: 2px !important;
  17. background:
  18. linear-gradient(
  19. var(--input-text-background-color),
  20. var(--input-text-background-color)
  21. ) padding-box,
  22. var(--rainbow) border-box !important;
  23. }
  24.  
  25. .action-box,
  26. .label-wrapper,
  27. table,
  28. tr,
  29. td,
  30. #about-translations-source-section,
  31. #about-translations-target-section,
  32. .about-translations-select,
  33. .select-wrapper {
  34. background:
  35. linear-gradient(
  36. var(--background-color-box),
  37. var(--background-color-box)
  38. ) padding-box,
  39. var(--rainbow) border-box !important;
  40. border-color: transparent !important;
  41. border-width: 1px !important;
  42. }
  43. }
  44.  
  45. @-moz-document url(about:addons),
  46. url(about:preferences) {
  47. .card,
  48. .action-box,
  49. hr,
  50. moz-card,
  51. .article.moz-card {
  52. background:
  53. linear-gradient(
  54. var(--background-color-box),
  55. var(--background-color-box)
  56. ) padding-box,
  57. var(--rainbow) border-box !important;
  58. border-color: transparent !important;
  59. border-width: 2px !important;
  60. }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment