Repository: ignite Updated Branches: refs/heads/ignite-2.5 4685ebe5f -> 5efc589fc
IGNITE-8294 Web Console: Move "Beta" ribbon to the left. (cherry picked from commit 69606e4) Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/5efc589f Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/5efc589f Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/5efc589f Branch: refs/heads/ignite-2.5 Commit: 5efc589fcabffdb29cd6dfe0e7323bc91db47703 Parents: 4685ebe Author: Ilya Borisov <[email protected]> Authored: Wed Apr 18 11:39:41 2018 +0700 Committer: Alexey Kuznetsov <[email protected]> Committed: Wed Apr 18 11:40:31 2018 +0700 ---------------------------------------------------------------------- .../web-console/frontend/public/stylesheets/style.scss | 10 ++++++++++ modules/web-console/frontend/views/index.pug | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/5efc589f/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 ae1e58c..0c978e9 100644 --- a/modules/web-console/frontend/public/stylesheets/style.scss +++ b/modules/web-console/frontend/public/stylesheets/style.scss @@ -1938,6 +1938,16 @@ treecontrol.tree-classic { } } +.ribbon-wrapper.left { + overflow: visible; + + .ribbon { + transform: rotate(-45deg); + left: -75px; + top: 10px; + } +} + html, body { width: 100%; min-height: 100vh; http://git-wip-us.apache.org/repos/asf/ignite/blob/5efc589f/modules/web-console/frontend/views/index.pug ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/views/index.pug b/modules/web-console/frontend/views/index.pug index e91af9b..6384592 100644 --- a/modules/web-console/frontend/views/index.pug +++ b/modules/web-console/frontend/views/index.pug @@ -39,7 +39,7 @@ html(ng-app='ignite-console' id='app' ng-strict-di) .splash-wellcome Loading... - .ribbon-wrapper.right(ng-if='!IgniteDemoMode') + .ribbon-wrapper.left(ng-if='!IgniteDemoMode') .ribbon label Beta
