Advertisement
difool2nice

tab coloring

Jul 10th, 2022
1,066
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1. .tab-background[selected],
  2. .tab-background[multiselected="true"] {
  3.     outline: none !important;
  4.     border: 0px solid transparent !important;
  5.     box-shadow: none !important;
  6.     background: #1E90FF !important;
  7.     border-radius: 3px !important;
  8.     background-clip: none !important;
  9.     color: #FFFFFF !important; 
  10. }
  11.  
  12. tab:not([selected]):hover .tab-background {
  13.     background: #1E90FF85 !important;
  14.     border-radius: 3px !important;
  15. }
  16.  
  17. .tab-background {
  18.     background: transparent !important;
  19.     border-radius: 3px !important;
  20. }
  21.  
  22. tab[selected]:hover .tab-background {
  23.     background-color: #1E90FF70 !important;
  24.     border-radius: 3px !important; 
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement