Merge pull request #5499 from stormpython/fix/5453

Adds less file with all Kibana color variables
This commit is contained in:
Khalah Jones Golden 2015-12-15 17:52:26 -04:00
commit bee9c41826
6 changed files with 351 additions and 410 deletions

View file

@ -1,4 +1,4 @@
@import "~ui/styles/dark-variables";
@import "~ui/styles/dark-variables.less";
@import "~bootstrap/less/mixins.less";
.tab-dashboard.theme-dark {

View file

@ -1,25 +1,7 @@
@white: #ffffff;
@black: #000000;
@gray2: #222222;
@gray3: #333333;
@gray4: #444444;
@gray5: #555555;
@gray6: #666666;
@gray7: #777777;
@gray8: #888888;
@gray9: #999999;
@gray10: #aaaaaa;
@gray11: #bbbbbb;
@gray12: #cccccc;
@gray13: #dddddd;
@gray14: #eeeeee;
@import "~ui/styles/variables/colors.less";
@brand-primary: @gray14;
@brand-success: #31c471;
@brand-info: #6482e5;
@brand-warning: #f39c12;
@brand-danger: #e74c3c;
@body-bg: @gray3;
@text-color: #cecece;

View file

@ -184,7 +184,7 @@ table,
// Forms ======================================================================
.form-control,
input, {
input {
border-width: @input-border-width;
.box-shadow(none);

View file

@ -1,3 +1,4 @@
@import "~bootstrap/less/variables.less";
@import "~ui/styles/variables/colors.less";
@import "~ui/styles/variables/bootstrap-mods.less";
@import "~ui/styles/variables/for-theme.less";

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,36 @@
//== Colors
//
//## Gray and brand colors for use across Bootstrap.
@white: #ffffff;
@black: #000000;
@gray2: #222222;
@gray3: #333333;
@gray4: #444444;
@gray5: #555555;
@gray6: #666666;
@gray7: #777777;
@gray8: #888888;
@gray9: #999999;
@gray10: #aaaaaa;
@gray11: #bbbbbb;
@gray12: #cccccc;
@gray13: #dddddd;
@gray14: #eeeeee;
@gray-base: @black;
@gray-darker: @gray2;
@gray-dark: #7b8a8b;
@gray: #95a5a6;
@gray-light: #b4bcc2;
@gray-lighter: #ecf0f1;
@esGreen: #94C63D;
@esGreen2: darken(@esGreen, 25%);
@brand-primary: @gray4;
@brand-success: #31C471;
@brand-info: #1F6B7A;
@brand-warning: #F39C12;
@brand-danger: #E74C3C;