[jboss-user] [JBoss Portal] - Re: Portal 2.6.6 Login Dialog Prboem in IE 6 and IE 7

2009-02-20 Thread Tommy_T
When this was fixed for 2.6.6, it was propably not updated in the 2.7.x-trunk. 
The login screen is not displayed correctly in Internet Explorer for 2.7.x.
The proposed solution below have been tested on 2.7.1 and renders the login 
screen properly. 
Button values and label data could be replaced with strings from a resource 
bundle instead (as default).

Edit the div.login-container div.login-content css property in 
jboss-portal.sar\portal-core.war\css\login.css

div.login-container div.login-content {
  |font-family: Verdana, Arial, Helvetica, Sans-Serif, sans-serif;
  |font-size: 11px;
  |width: 255px;
  |border: 1px solid #CFCFCF;
  |background-color:white;
  |padding: 0px 0 0 0;
  |text-align: right;
  | }

Set appropriate width in
jboss-portal.sar\portal-server.war\login.jsp

   form method=post action=%= response.encodeURL(j_security_check) 
% name=loginform id=loginForm
  | target=_parent
  |  div class=form-field
  | label for=j_usernameUsername/label
  | input type=text style=width:155px; name=j_username 
id=j_username value=/
  |  /div
  |  div class=form-field bottom-field
  | label for=j_passwordPassword/label
  | input type=password style=width:155px; name=j_password 
id=j_password value=/
  |  /div
  |  input style=width:75px;%=(request.getParameter(loginheight) 
!= null ?  : display:none)%; 
  | type=button name=cancel value=Cancel class=cancel-button 
onclick=window.parent.hideContentModal('login-modal');/
  |  input style=width:75px;%=(request.getParameter(loginheight) 
!= null ?  : right:10px)%; 
  | type=submit name=login value=Login class=login-button/
  |   /form

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4211705#4211705

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211705
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Portal 2.6.6 Login Dialog Prboem in IE 6 and IE 7

2009-02-20 Thread thomas.he...@jboss.com
It was updated in 2.7 as well (the files 
jboss-portal.sar\portal-core.war\css\login.css  in Branch_2_6 and Branch_2_7 
are exactly the same).

So I'm not sure I follow you here

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4211827#4211827

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4211827
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Portal 2.6.6 Login Dialog Prboem in IE 6 and IE 7

2009-01-21 Thread lkj107
JBoss Portal 2.7.0 GA,login screen is not displayed correctly in internet 
explorer 6 too,how can i solve it.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4203510#4203510

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4203510
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Portal 2.6.6 Login Dialog Prboem in IE 6 and IE 7

2009-01-07 Thread Tommy_T
I needed to fix this on version 2.6.6 on JBoss portal, here is how I solved it.

Remove padding on div.login-container and div.login-content in 
jboss-portal.sar\portal-core.war\css\login.css

div.login-container div.login-content {
  |background-image: url( ../images/modal/login-content-bg.gif );
  |background-position: top left;
  |background-repeat: repeat-x;
  |width: 255px;
  |font-weight: bold;
  |padding: 0px 0 0 0;
  |text-align: right;
  | }

Set appropriate width on buttons in
jboss-portal.sar\portal-server.war\login.jsp

input style=width:75px; type=button name=cancel value=%= 
rb.getString(LOGIN_CANCEL)  % class=cancel-button 
onclick=window.parent.hideContentModal('login-modal');/
  | input style=width:75px; type=submit name=login value=%= 
rb.getString(LOGIN_SUBMIT)  % class=login-button/

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4200093#4200093

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4200093
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Portal 2.6.6 Login Dialog Prboem in IE 6 and IE 7

2008-08-18 Thread wesleyhales
This is fixed on trunk and will be in next 2.6.7 and 2.7.0.CR1 releases.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4171176#4171176

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4171176
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Portal 2.6.6 Login Dialog Prboem in IE 6 and IE 7

2008-08-11 Thread PeterJ
You are so right - in IE the button are almost impossible to access. You could 
try editing the file jboss-portal.sar/portal-server.war/login.jsp.

You should also open a JIRA to get this fixed.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4169915#4169915

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4169915
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Portal 2.6.6 Login Dialog Prboem in IE 6 and IE 7

2008-08-11 Thread [EMAIL PROTECTED]
I have created https://jira.jboss.org/jira/browse/JBPORTAL-2121. I will ask 
Wesley to comment on this thread in mean time.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4169916#4169916

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4169916
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user