Added check icon.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/992b0250 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/992b0250 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/992b0250 Branch: refs/heads/ignite-6643 Commit: 992b0250a31b30e6a93aae714ef3bc1e43ca3156 Parents: d6585fa Author: Alexey Kuznetsov <[email protected]> Authored: Wed Jan 24 19:24:01 2018 +0700 Committer: Alexey Kuznetsov <[email protected]> Committed: Wed Jan 24 19:24:01 2018 +0700 ---------------------------------------------------------------------- .../frontend/public/images/icons/check.svg | 3 ++ .../frontend/public/images/icons/index.js | 1 + .../frontend/public/stylesheets/style.scss | 33 ++++++++++++++++++++ 3 files changed, 37 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/992b0250/modules/web-console/frontend/public/images/icons/check.svg ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/public/images/icons/check.svg b/modules/web-console/frontend/public/images/icons/check.svg new file mode 100644 index 0000000..ed74764 --- /dev/null +++ b/modules/web-console/frontend/public/images/icons/check.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="14" height="11" viewBox="0 0 14 11"> + <path fill="#FFF" fill-rule="evenodd" d="M4.45 8.42L1.13 5.103 0 6.224l4.45 4.45L14 1.121 12.878 0 4.449 8.42"/> +</svg> http://git-wip-us.apache.org/repos/asf/ignite/blob/992b0250/modules/web-console/frontend/public/images/icons/index.js ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/public/images/icons/index.js b/modules/web-console/frontend/public/images/icons/index.js index 48d9227..816ef1f 100644 --- a/modules/web-console/frontend/public/images/icons/index.js +++ b/modules/web-console/frontend/public/images/icons/index.js @@ -26,6 +26,7 @@ export search from './search.svg'; export refresh from './refresh.svg'; export sort from './sort.svg'; export info from './info.svg'; +export check from './check.svg'; export checkmark from './checkmark.svg'; export alert from './alert.svg'; export attention from './attention.svg'; http://git-wip-us.apache.org/repos/asf/ignite/blob/992b0250/modules/web-console/frontend/public/stylesheets/style.scss ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/public/stylesheets/style.scss b/modules/web-console/frontend/public/stylesheets/style.scss index 9d4cad9..baa49f8 100644 --- a/modules/web-console/frontend/public/stylesheets/style.scss +++ b/modules/web-console/frontend/public/stylesheets/style.scss @@ -2211,3 +2211,36 @@ html,body,.splash-screen { margin-left: 5px; } } + +header.header-with-selector { + margin: 40px 0 30px; + + display: flex; + flex-direction: row; + justify-content: space-between; + + + h1 { + height: 36px; + margin: 0; + margin-right: 8px; + + font-family: Roboto, sans-serif; + font-size: 24px; + line-height: 36px; + } + + div { + display: flex; + } + + .btn-ignite + .btn-ignite-group { + position: relative; + margin-left: 20px; + + ul.dropdown-menu { + min-width: 100%; + font-family: Roboto; + } + } +}
