Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
670
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. /* Show title of unread tabs with red and italic font */
  2. /*
  3. .tab.unread .label {
  4. color: red !important;
  5. font-style: italic !important;
  6. }
  7. */
  8.  
  9. /* Add private browsing indicator per tab */
  10. /*
  11. .tab.private-browsing .label:before {
  12. content: "🕶";
  13. }
  14. */
  15.  
  16. /* Hide border on tab bar, force its state to 'scroll', adjust margin-left for width of scrollbar. */
  17. #tabbar {
  18. border: 0;
  19. overflow-y: scroll !important;
  20. margin-left: -18px !important;
  21. }
  22.  
  23. /* Hide .twisty and adjust margins so favicons have 7px on left. */
  24. .tab .twisty {
  25. visibility: hidden;
  26. margin-left: -13px;
  27. }
  28.  
  29. /* Push tab labels to the right so they're hidden while collapsed, but still look fine expanded. */
  30. .tab .label {
  31. margin-left: 8px;
  32. }
  33.  
  34. /* Hide 'new tab' button. */
  35. .newtab-button {
  36. display: none;
  37. }
  38.  
  39. /* Hide close buttons on tabs. */
  40. .tab .closebox {
  41. visibility: collapse;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement