app/assets/less/variables.less: major cleanup.
* Remove "special" color values in favor for defined ones in variables. * Remove some ref to bootstrap variables.
This commit is contained in:
parent
d4a11a7ab3
commit
030ebbe104
1 changed files with 13 additions and 9 deletions
|
|
@ -120,9 +120,9 @@
|
|||
// Blankslate
|
||||
// ----------------------------------
|
||||
|
||||
@blankslate-bg: @well-bg;
|
||||
@blankslate-bg: @gray-lightest;
|
||||
@blankslate-color: @text-secondary-color;
|
||||
@blankslate-border: @well-border;
|
||||
@blankslate-border: @border-color;
|
||||
@blankslate-spacing: 25px 10px;
|
||||
@blankslate-spacing-sm: 15px 5px;
|
||||
|
||||
|
|
@ -142,7 +142,7 @@
|
|||
// Section
|
||||
// ----------------------------------
|
||||
|
||||
@section-bg: white;
|
||||
@section-bg: @foreground-color;
|
||||
@section-border: rgb(200, 200, 200);
|
||||
@section-padding: 20px;
|
||||
|
||||
|
|
@ -150,25 +150,29 @@
|
|||
// Callback list
|
||||
// ----------------------------------
|
||||
|
||||
@callback-list-hover-color: @gray-lightest;
|
||||
@callback-list-info-color: @text-secondary-color;
|
||||
|
||||
@callback-list-border-size: 1px;
|
||||
@callback-list-border-color: @gray-light;
|
||||
@callback-list-border-radius: 3px;
|
||||
@callback-list-hover-color: @gray-lightest;
|
||||
|
||||
@callback-list-name-text-size: @font-size-h4;
|
||||
@callback-list-name-color: @text-color;
|
||||
@callback-list-name-hover-color: @link-color;
|
||||
@callback-list-info-color: @text-secondary-color;
|
||||
|
||||
// ----------------------------------
|
||||
// Request list
|
||||
// ----------------------------------
|
||||
|
||||
@request-item-color: @gray-dark;
|
||||
@request-item-light-color: #666;
|
||||
@request-item-light-color: @gray;
|
||||
@request-item-background: transparent;
|
||||
@request-item-border-color: @gray-light;
|
||||
@request-item-active-color: @gray-dark;
|
||||
@request-item-active-background: @gray-lightest;
|
||||
@request-item-active-border-color: darken(@request-item-active-background, 10%);
|
||||
@request-item-hover-background: @request-item-active-background;
|
||||
|
||||
@request-item-active-color: @request-item-color;
|
||||
@request-item-active-background: @gray-lightest;
|
||||
@request-item-active-border-color: @request-item-border-color;
|
||||
|
||||
@request-detail-background: lighten(@brand-color, 45%);
|
||||
|
|
|
|||
Reference in a new issue