Repository: ignite Updated Branches: refs/heads/master ff7372b71 -> 25f2d1865
IGNITE-9177 Web Console: Fixed UI under Edge. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/25f2d186 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/25f2d186 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/25f2d186 Branch: refs/heads/master Commit: 25f2d18650fc13a7381007287e06baa9dd66ac0a Parents: ff7372b Author: Dmitriy Shabalin <[email protected]> Authored: Fri Aug 3 17:53:15 2018 +0700 Committer: Alexey Kuznetsov <[email protected]> Committed: Fri Aug 3 17:53:15 2018 +0700 ---------------------------------------------------------------------- .../templates/general/discovery/multicast.pug | 2 +- .../frontend/app/components/page-configure-basic/style.scss | 6 ++++++ .../frontend/app/components/page-configure/style.scss | 4 ++++ 3 files changed, 11 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/25f2d186/modules/web-console/frontend/app/components/page-configure-advanced/components/cluster-edit-form/templates/general/discovery/multicast.pug ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/components/page-configure-advanced/components/cluster-edit-form/templates/general/discovery/multicast.pug b/modules/web-console/frontend/app/components/page-configure-advanced/components/cluster-edit-form/templates/general/discovery/multicast.pug index 639a374..2d7aa4bd 100644 --- a/modules/web-console/frontend/app/components/page-configure-advanced/components/cluster-edit-form/templates/general/discovery/multicast.pug +++ b/modules/web-console/frontend/app/components/page-configure-advanced/components/cluster-edit-form/templates/general/discovery/multicast.pug @@ -32,7 +32,7 @@ mixin discovery-multicast(modelAt = '$ctrl.clonedCluster') +number('Attempts count:', `${model}.addressRequestAttempts`, '"addressRequestAttempts"', 'true', '2', '0', 'Number of attempts to send multicast address request<br/>\ IP finder re - sends request only in case if no reply for previous request is received') - .pc-form-grid-col-20 + .pc-form-grid-col-20.pc-form-grid-col-free +text-ip-address('Local address:', `${model}.localAddress`, '"localAddress"', 'true', '0.0.0.0', 'Local host address used by this IP finder<br/>\ If provided address is non - loopback then multicast socket is bound to this interface<br/>\ http://git-wip-us.apache.org/repos/asf/ignite/blob/25f2d186/modules/web-console/frontend/app/components/page-configure-basic/style.scss ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/components/page-configure-basic/style.scss b/modules/web-console/frontend/app/components/page-configure-basic/style.scss index 7c2108a..7e0d8ba 100644 --- a/modules/web-console/frontend/app/components/page-configure-basic/style.scss +++ b/modules/web-console/frontend/app/components/page-configure-basic/style.scss @@ -130,6 +130,9 @@ page-configure-basic { &>.pc-form-grid-col-120 { flex: 0 0 100%; } + &>.pc-form-grid-col-free { + flex: 1; + } } @media(max-width: 992px) { &>.pc-form-grid-col-10 { @@ -152,6 +155,9 @@ page-configure-basic { &>.pc-form-grid-col-120 { flex: 0 0 100%; } + &>.pc-form-grid-col-free { + flex: 1; + } } } } \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ignite/blob/25f2d186/modules/web-console/frontend/app/components/page-configure/style.scss ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/components/page-configure/style.scss b/modules/web-console/frontend/app/components/page-configure/style.scss index 8cbf83e..36ae752 100644 --- a/modules/web-console/frontend/app/components/page-configure/style.scss +++ b/modules/web-console/frontend/app/components/page-configure/style.scss @@ -224,6 +224,10 @@ list-editable .pc-form-group__text-title { flex-basis: calc(100% / 1); } + &>.pc-form-grid-col-free { + flex: 1; + } + @media(max-width: 992px) { &>.pc-form-grid-col-10 { flex-basis: calc(25%);
