| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /*
- * This file contains styling for the Main view.
- */
- /*
- * Generates a set of style rules for the "navigation" tab UI.
- */
- @include extjs-tab-panel-ui(
- $ui: 'navigation',
- $ui-tab-background-color: transparent,
- $ui-tab-background-color-over: #505050,
- $ui-tab-background-color-active: #303030,
- $ui-tab-background-gradient: 'none',
- $ui-tab-background-gradient-over: 'none',
- $ui-tab-background-gradient-active: 'none',
- $ui-tab-color: #acacac,
- $ui-tab-color-over: #c4c4c4,
- $ui-tab-color-active: #fff,
- $ui-tab-glyph-color: #acacac,
- $ui-tab-glyph-color-over: #c4c4c4,
- $ui-tab-glyph-color-active: #fff,
- $ui-tab-glyph-opacity: 1,
- $ui-tab-border-radius: 0,
- $ui-tab-border-width: 0,
- $ui-tab-inner-border-width: 0,
- $ui-tab-padding: 24px,
- $ui-tab-margin: 0,
- $ui-tab-font-size: 15px,
- $ui-tab-font-size-over: 15px,
- $ui-tab-font-size-active: 15px,
- $ui-tab-line-height: 19px,
- $ui-tab-font-weight: bold,
- $ui-tab-font-weight-over: bold,
- $ui-tab-font-weight-active: bold,
- $ui-tab-icon-width: 24px,
- $ui-tab-icon-height: 24px,
- $ui-tab-icon-spacing: 5px,
- $ui-bar-background-color: #404040,
- $ui-bar-background-gradient: 'none',
- $ui-bar-padding: 0,
- $ui-strip-height: 0
- );
- /*
- * Generates a set of style rules for the "navigation" panel UI.
- */
- @include extjs-panel-ui(
- $ui: 'navigation',
- $ui-header-color: #fff,
- $ui-header-glyph-color: #fff,
- $ui-header-glyph-opacity: 1,
- $ui-header-font-size: 20px,
- $ui-header-line-height: 24px,
- $ui-header-font-weight: bold,
- $ui-header-icon-height: 24px,
- $ui-header-icon-width: 24px,
- $ui-header-icon-spacing: 15px,
- $ui-header-background-color: $base-color,
- $ui-header-padding: 0,
- $ui-header-text-margin: 36px,
- $ui-header-noborder-adjust: false
- );
- .x-title-icon-navigation {
- font-family: FontAwesome;
- color: #fff;
- font-size: 24px;
- line-height: 24px;
- }
- .x-tab-icon-el-navigation {
- font-family: FontAwesome;
- color: #acacac;
- .x-tab-over & {
- color: #c4c4c4;
- }
- .x-tab-active & {
- color: #fff;
- }
- }
- .x-panel-header-title-navigation > .x-title-text-navigation:after {
- top: 30px;
- right: -24px;
- }
|