You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.1 KiB

4 years ago
  1. :root {
  2. --color-bg: #21252b;
  3. --color-fg: #a9b2c3;
  4. --color-acc1: #b9ca4a;
  5. --color-acc2: #e6c546;
  6. --color-acc3: #61afef
  7. --color-warn1: #e06c75;
  8. --color-white: #eaeaea;
  9. }
  10. :root,
  11. #background {
  12. background: var(--color-bg);
  13. }
  14. .tab {
  15. border-top: 0px solid transparent;
  16. border-bottom: 0px solid transparent;
  17. height: 35px;
  18. padding: 0px 0px 0px 0px;
  19. z-index: 0;
  20. }
  21. /*doesnt work*/
  22. .tab-item {
  23. border: solid 5px transparent;
  24. }
  25. .tab.active .label {
  26. color: var(--color-bg);
  27. }
  28. .tab.active {
  29. border-top: 0px solid var(--color-warn1);
  30. background: var(--color-acc1);
  31. }
  32. .tab .label {
  33. color: var(--color-fg);
  34. }
  35. .tab:not(.active) {
  36. background: var(--color-bg1);
  37. throbber-color: var(--color-acc3);
  38. }
  39. /*remove + symbol */
  40. #tabbar .after-tabs {
  41. display: none !important;
  42. }
  43. .tab:not(:hover) .closebox {
  44. display: none;
  45. }
  46. /* Show title of unread tabs with red and italic font */
  47. /*
  48. .tab.unread .label {
  49. color: red !important;
  50. font-style: italic !important;
  51. }
  52. */
  53. /* Add private browsing indicator per tab */
  54. /*
  55. .tab.private-browsing .label:before {
  56. content: "🕶";
  57. }
  58. */