Alexander Wels has uploaded a new change for review. Change subject: engine: Locale dropdown not working ......................................................................
engine: Locale dropdown not working - Fixed issue where if you caused a scrollbar to appear in the browser, then locale selection dropdown would stop working. The css placed the element fixed to then browser window instead of relative to the containing element - Fixed the same issue for webadmin and user portal login screens. Change-Id: Id25bb36914c8c2ecdde62fbb04b7b0374be3d88d Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=1009986 Signed-off-by: Alexander Wels <[email protected]> --- M frontend/webadmin/modules/userportal-gwtp/src/main/java/org/ovirt/engine/ui/userportal/section/login/view/LoginPopupView.ui.xml M frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/section/login/view/LoginPopupView.ui.xml M packaging/branding/ovirt.brand/welcome_style.css 3 files changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/09/19809/1 diff --git a/frontend/webadmin/modules/userportal-gwtp/src/main/java/org/ovirt/engine/ui/userportal/section/login/view/LoginPopupView.ui.xml b/frontend/webadmin/modules/userportal-gwtp/src/main/java/org/ovirt/engine/ui/userportal/section/login/view/LoginPopupView.ui.xml index 0d5d943..40beaeb 100644 --- a/frontend/webadmin/modules/userportal-gwtp/src/main/java/org/ovirt/engine/ui/userportal/section/login/view/LoginPopupView.ui.xml +++ b/frontend/webadmin/modules/userportal-gwtp/src/main/java/org/ovirt/engine/ui/userportal/section/login/view/LoginPopupView.ui.xml @@ -58,7 +58,7 @@ color: gray; background: none repeat scroll 0 0 transparent; opacity:0; - position:fixed; + position:absolute; width: 150px; } diff --git a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/section/login/view/LoginPopupView.ui.xml b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/section/login/view/LoginPopupView.ui.xml index ce77bae..cf50897 100644 --- a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/section/login/view/LoginPopupView.ui.xml +++ b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/section/login/view/LoginPopupView.ui.xml @@ -55,7 +55,7 @@ color: gray; background: none repeat scroll 0 0 transparent; opacity:0; - position:fixed; + position:absolute; width: 150px; } diff --git a/packaging/branding/ovirt.brand/welcome_style.css b/packaging/branding/ovirt.brand/welcome_style.css index 012ac10..5f0f9d5 100644 --- a/packaging/branding/ovirt.brand/welcome_style.css +++ b/packaging/branding/ovirt.brand/welcome_style.css @@ -97,7 +97,7 @@ color: gray; font-size: 11px; opacity: 0; - position: fixed; + position: absolute; width: 150px; } -- To view, visit http://gerrit.ovirt.org/19809 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id25bb36914c8c2ecdde62fbb04b7b0374be3d88d Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.3 Gerrit-Owner: Alexander Wels <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
