-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7aefcd5
commit 0101aa7
Showing
3 changed files
with
102 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
table.table { | ||
> thead > tr > th { | ||
vertical-align: bottom; | ||
border-bottom: 1px solid @table-header-border-color; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/*-----------------------------------------------------------------------*/ | ||
/* General Theme Colors */ | ||
/*-----------------------------------------------------------------------*/ | ||
@mnoe-admin-panel-orange: #e99d1a; | ||
@mnoe-admin-panel-blue: #30426a; | ||
@mnoe-admin-panel-grey: #626d6d; | ||
@mnoe-admin-panel-dark-grey: #17262d; | ||
@mnoe-admin-panel-light-grey: #e6edee; | ||
@mnoe-admin-panel-dark-white: #f1f1f1; | ||
@mnoe-admin-panel-white: #ffffff; | ||
|
||
/*-----------------------------------------------------------------------*/ | ||
/* Twitter Bootstrap colors */ | ||
/*-----------------------------------------------------------------------*/ | ||
@brand-primary: darken(#428bca, 6.5%); | ||
@brand-success: #5cb85c; | ||
@brand-info: #5bc0de; | ||
@brand-warning: #f0ad4e; | ||
@brand-danger: #d9534f; | ||
|
||
// Main colors | ||
//------------------------------------------------------------- | ||
// Dashboard background color | ||
@bg-main-color: @mnoe-admin-panel-dark-white; | ||
|
||
// Elements placed on top of bg-main-color | ||
@decorator-main-color: @mnoe-admin-panel-orange; | ||
|
||
// Used for text used in the context of bg-main-color | ||
@text-main-color: @mnoe-admin-panel-grey; | ||
|
||
// Used for strong text used in the context of bg-main-color | ||
@text-main-strong-color: @mnoe-admin-panel-dark-grey; | ||
|
||
// Inverse colors | ||
//------------------------------------------------------------- | ||
// Background color used for dashboard side menu. top banners, inverse modals | ||
@bg-inverse-color: @mnoe-admin-panel-blue; | ||
|
||
// Background color for elements displayed on top of inverse elements | ||
@bg-on-bg-inverse-color: @mnoe-admin-panel-dark-white; | ||
|
||
// Design elements (lines, borders) on top of bg-inverse-color | ||
@decorator-inverse-color: @mnoe-admin-panel-orange; | ||
|
||
// Text used on top of bg-inverse-color such as inverse modals | ||
@text-inverse-color: @mnoe-admin-panel-light-grey; | ||
|
||
// Strong text used on top of bg-inverse-color | ||
@text-inverse-strong-color: @mnoe-admin-panel-white; | ||
|
||
// Color used in small/isolated elements | ||
//------------------------------------------------------------- | ||
// Color used as a decoration on small icons or specific text | ||
@decorator-touch-color: @mnoe-admin-panel-orange; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters