1. :root {
  2. --tab-background-normal: 0, 0%, 99%;
  3. --tab-background-pinned: 0, 0%, 97%;
  4. --tab-background-active: 0, 0%, 87%;
  5. --tab-background-hover: 0, 0%, 91%;
  6. --tab-border-color: hsla(0, 0%, 0%, 0.06);
  7. --searchbox-background: #fff;
  8. --primary-text-color: #18191a;
  9. --secondary-text-color: #737373;
  10. --close-button-color: hsla(0, 0%, 0%, 0.1);
  11. --close-button-hover: hsla(0, 0%, 0%, 0.16);
  12. --close-button-active: hsla(0, 0%, 0%, 0.2);
  13. --menu-background: hsl(0, 0%, 99%);
  14. --menu-button-text-shadow: 0 1px rgba(255, 255, 255, .4);
  15. --menu-button-hover: hsla(240, 5%, 5%, .1);
  16. --menu-button-active: hsla(240, 5%, 5%, .15);
  17. --border-radius: 0px;
  18. }
  19. body {
  20. padding-bottom: 29px;
  21. background-color: Window;
  22. }
  23. .tab-context {
  24. background-image: none !important;
  25. }
  26. .tab.active {
  27. background-color: #fff;
  28. position: relative;
  29. font-weight: bold;
  30. }
  31. body:hover .tab.active {
  32. background-color: Window;
  33. }
  34. .tab {
  35. border: none !important;
  36. }
  37. .tab:hover {
  38. color: Highlight;
  39. }
  40. .tab-title-wrapper::after {
  41. background-image: linear-gradient(to right, hsla(var(--tab-background), 0), Window 25%);
  42. }
  43. .tab.active .tab-title-wrapper::after {
  44. background-image: linear-gradient(to right, hsla(var(--tab-background), 0), Window 25%);
  45. }
  46. #newtab {
  47. margin: 0 4px 0 0;
  48. }
  49. #searchbox {
  50. margin: 0 4px 0 4px;
  51. }
  52. #newtab-label {
  53. margin-left: 6px;
  54. }
  55. #topmenu {
  56. background: Window;
  57. }
  58. .topmenu-button:hover {
  59. background-color: #fff;
  60. }
  61. #tablist-wrapper #pinnedtablist {
  62. background: Window;
  63. //border-bottom: 1px solid ThreeDShadow;
  64. }
  65. .tab.pinned > .tab-title-wrapper::after {
  66. background: Window;
  67. }
  68. .tab.active > .tab-title-wrapper::after {
  69. --tab-background: var(--tab-background-active);
  70. }
  71. .tab:not(.active):hover > .tab-title-wrapper::after {
  72. --tab-background: var(--tab-background-hover);
  73. }
  74. #topmenu #settings {
  75. display: none;
  76. }
  77. .tab[title='New Tab'] .tab-icon {
  78. background-image: none !important;
  79. border: 1px dashed ThreeDShadow;
  80. }