diff options
author | seshukm <seshu.kumar.m@huawei.com> | 2017-03-30 16:54:45 +0530 |
---|---|---|
committer | seshukm <seshu.kumar.m@huawei.com> | 2017-03-30 16:55:42 +0530 |
commit | 1e7e41c2d219ed29c2a0fb56ca0879c2aab4c9ae (patch) | |
tree | 04f4f4229b0b468cca02dc35f6245d5fce6c2099 | |
parent | 1f5d15af3413cd2d9d02284d4a4830c6b9edec5c (diff) |
Defect fix of Main GUI
Fix the issue of right container spacing for different pages.
IssueId: CLIENT-189
Change-Id: I54433b1e291cf8015ae8db90f392a9978861ea2b
Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
-rw-r--r-- | login/src/main/webapp/login/html/menu.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/login/src/main/webapp/login/html/menu.html b/login/src/main/webapp/login/html/menu.html index 6908d056..89bad951 100644 --- a/login/src/main/webapp/login/html/menu.html +++ b/login/src/main/webapp/login/html/menu.html @@ -128,8 +128,8 @@ </ul> </div> </div> - <div id="page-main-wrapper"> - <div id="page-header"> + <div id="page-main-wrapper" style="height:100%;"> + <div id="page-header" > <div id="page-header-wrapper" class="clearfix"> <div class="top-icon-bar dropdown"> <a href="javascript:;" title="" class="user-ico clearfix" data-toggle="dropdown"> @@ -155,8 +155,8 @@ </div> </div> </div> - <div id="rightContainer" class="col-sm-8 col-md-9 col-lg-9"> - <iframe id="mainFrame" name="mainFrame" frameBorder=0 scrolling=no width="100%" onLoad="iFrameHeight()"></iframe> + <div id="rightContainer" style="width:100%;height:100%" class="col-sm-8 col-md-9 col-lg-9"> + <iframe id="mainFrame" name="mainFrame" frameBorder=0 scrolling="auto" style="width:100%;height:100%"></iframe> </div> </div> </div> |