FineWine

tooltip_rainbow_border.css

Jun 11th, 2026 (edited)
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.09 KB | Software | 0 0
  1. /**********************************/
  2. /* Rainbow tooltip & dialog borders
  3. LAST MODIFIED 03/07/2026
  4. /**********************************/
  5.  
  6. #aHTMLTooltip,
  7. #bhTooltip,
  8. #btTooltip,
  9. #places-tooltip,
  10. .places-tooltip,
  11. .places-tooltip-box,
  12. #remoteBrowserTooltip,
  13. #tooltip,
  14. .tooltip,
  15. tooltip,
  16. #un-toolbar-tooltip,
  17. #urlTooltip {
  18.     appearance: none !important;
  19.     color: darkgreen !important; /*textcolor*/
  20.     max-width: auto !important;
  21.     max-height: auto !important;
  22.     background-color: whitesmoke !important;
  23.     background:
  24.     linear-gradient(#f5f5f5, #f5f5f5) content-box,
  25.     linear-gradient(45deg, red 0%, orange 16.66%, yellow 33.33%, green 50%, blue 66.66%, indigo 83.33%, violet 100%) border-box !important;
  26.     border-radius: 8px !important;
  27.     border: inherit !important;
  28.     padding: 1px !important;
  29.     font-family: inherit !important;
  30.     font-size: 1.1em !important;
  31.     opacity: 1 !important;
  32.     box-shadow: 0 !important;
  33. }
  34.  
  35. /* Optional: Offset the position so the mouse pointer doesn't block the text */
  36. tooltip:not([position]) {
  37.   margin-top: 8px !important;
  38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment