Main.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * This file contains styling for the Main view.
  3. */
  4. /*
  5. * Generates a set of style rules for the "navigation" tab UI.
  6. */
  7. @include extjs-tab-panel-ui(
  8. $ui: 'navigation',
  9. $ui-tab-background-color: transparent,
  10. $ui-tab-background-color-over: #505050,
  11. $ui-tab-background-color-active: #303030,
  12. $ui-tab-background-gradient: 'none',
  13. $ui-tab-background-gradient-over: 'none',
  14. $ui-tab-background-gradient-active: 'none',
  15. $ui-tab-color: #acacac,
  16. $ui-tab-color-over: #c4c4c4,
  17. $ui-tab-color-active: #fff,
  18. $ui-tab-glyph-color: #acacac,
  19. $ui-tab-glyph-color-over: #c4c4c4,
  20. $ui-tab-glyph-color-active: #fff,
  21. $ui-tab-glyph-opacity: 1,
  22. $ui-tab-border-radius: 0,
  23. $ui-tab-border-width: 0,
  24. $ui-tab-inner-border-width: 0,
  25. $ui-tab-padding: 24px,
  26. $ui-tab-margin: 0,
  27. $ui-tab-font-size: 15px,
  28. $ui-tab-font-size-over: 15px,
  29. $ui-tab-font-size-active: 15px,
  30. $ui-tab-line-height: 19px,
  31. $ui-tab-font-weight: bold,
  32. $ui-tab-font-weight-over: bold,
  33. $ui-tab-font-weight-active: bold,
  34. $ui-tab-icon-width: 24px,
  35. $ui-tab-icon-height: 24px,
  36. $ui-tab-icon-spacing: 5px,
  37. $ui-bar-background-color: #404040,
  38. $ui-bar-background-gradient: 'none',
  39. $ui-bar-padding: 0,
  40. $ui-strip-height: 0
  41. );
  42. /*
  43. * Generates a set of style rules for the "navigation" panel UI.
  44. */
  45. @include extjs-panel-ui(
  46. $ui: 'navigation',
  47. $ui-header-color: #fff,
  48. $ui-header-glyph-color: #fff,
  49. $ui-header-glyph-opacity: 1,
  50. $ui-header-font-size: 20px,
  51. $ui-header-line-height: 24px,
  52. $ui-header-font-weight: bold,
  53. $ui-header-icon-height: 24px,
  54. $ui-header-icon-width: 24px,
  55. $ui-header-icon-spacing: 15px,
  56. $ui-header-background-color: $base-color,
  57. $ui-header-padding: 0,
  58. $ui-header-text-margin: 36px,
  59. $ui-header-noborder-adjust: false
  60. );
  61. .x-title-icon-navigation {
  62. font-family: FontAwesome;
  63. color: #fff;
  64. font-size: 24px;
  65. line-height: 24px;
  66. }
  67. .x-tab-icon-el-navigation {
  68. font-family: FontAwesome;
  69. color: #acacac;
  70. .x-tab-over & {
  71. color: #c4c4c4;
  72. }
  73. .x-tab-active & {
  74. color: #fff;
  75. }
  76. }
  77. .x-panel-header-title-navigation > .x-title-text-navigation:after {
  78. top: 30px;
  79. right: -24px;
  80. }