PLT-6595 (Client): Elasticsearch indexing system console UI (#6991)

* PLT-6595: System Console for Elasticsearch Job Management.

* Fixing UI issues

* Fixing colors

* ESLint Fixes.

* Update test snapshots.

* Fixing cancel button

* Fix review comments.

* Config capitalisation.

* Review fixes.
Этот коммит содержится в:
George Goldberg
2017-08-01 13:11:29 +01:00
коммит произвёл GitHub
родитель 25a2013890
Коммит 00e8b6621a
14 изменённых файлов: 626 добавлений и 22 удалений

Просмотреть файл

@@ -289,6 +289,22 @@
.admin-console-header {
border-bottom: 1px solid alpha-color($black, .1);
}
.status-icon-unknown {
color: gray;
}
.status-icon-success {
color: #69c169;
}
.status-icon-warning {
color: #eac262;
}
.status-icon-error {
color: #ea6262;
}
}
.brand-img {
@@ -476,10 +492,6 @@
margin-top: -15px;
}
.reload-config {
margin-bottom: 50px !important;
}
.recycle-db {
margin-top: 50px !important;
}

33
webapp/sass/utils/_modifiers.scss Обычный файл
Просмотреть файл

@@ -0,0 +1,33 @@
@charset 'UTF-8';
.margin--right {
margin-right: 5px;
&.x2 {
margin-right: 10px;
}
}
.margin--left {
margin-left: 5px;
&.x2 {
margin-left: 10px;
}
}
.padding--right {
padding-right: 5px;
&.x2 {
padding-right: 10px;
}
}
.padding--left {
padding-left: 5px;
&.x2 {
padding-left: 10px;
}
}

Просмотреть файл

@@ -3,3 +3,4 @@
@import 'functions';
@import 'mixins';
@import 'animations';
@import 'modifiers';