notebook.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /************
  2. * notebook *
  3. ************/
  4. .notebook {
  5. padding: 0;
  6. background-color: @theme_base_color;
  7. background-image: none;
  8. background-clip: border-box;
  9. -GtkNotebook-has-tab-gap: false;
  10. border: none;
  11. }
  12. .notebook.header {
  13. background-color: @theme_bg_color;
  14. background-image: none;
  15. box-shadow: none;
  16. border-width: 0;
  17. }
  18. .notebook tab {
  19. padding: 8px;
  20. box-shadow: none;
  21. border: 1px solid @theme_bg_color;
  22. background-color: alpha(@theme_base_color,0.3);
  23. background-image: none;
  24. }
  25. .notebook tab:active {
  26. background-color: @theme_base_color;
  27. /*border-left: 3px solid @selected_bg_color;*/
  28. }
  29. .notebook tab.top:active {
  30. border-bottom: 0px;
  31. }
  32. .notebook tab.left {
  33. border-right: 1px solid @theme_bg_color;
  34. }
  35. .notebook tab.left:active {
  36. border-right: 0px;
  37. }
  38. .notebook tab.bottom {
  39. border-top: 1px solid @theme_bg_color;
  40. }
  41. .notebook tab.bottom:active {
  42. border-top: 0px;
  43. }
  44. .notebook tab.right {
  45. border-left: 1px solid @theme_bg_color;
  46. }
  47. .notebook tab.right:active {
  48. border-left: 0px;
  49. }
  50. .notebook tab.left:first-child:active,
  51. .notebook tab.right:first-child:active {
  52. border-top: 0px;
  53. }
  54. .notebook tab.left:last-child:active,
  55. .notebook tab.right:last-child:active {
  56. border-bottom: 0px;
  57. }
  58. .notebook tab.top:first-child:active,
  59. .notebook tab.bottom:first-child:active {
  60. border-left: 0px;
  61. }
  62. .notebook tab.top:last-child:active,
  63. .notebook tab.bottom:last-child:active {
  64. border-right: 0px;
  65. }
  66. /* close button styling */
  67. .notebook tab .button {
  68. transition: ease-in 150ms;
  69. padding: 2px;
  70. border: none;
  71. background-image: none;
  72. background-color: transparent;
  73. color: @theme_text_color;
  74. }
  75. .notebook tab .button:hover,
  76. .notebook tab .button:active:hover {
  77. color: @red;
  78. background-color: transparent;
  79. }