diff --git a/widgets/login_info/skins/xe_official/css/black.css b/widgets/login_info/skins/xe_official/css/black.css index d5e1019ca..f1b542774 100644 --- a/widgets/login_info/skins/xe_official/css/black.css +++ b/widgets/login_info/skins/xe_official/css/black.css @@ -37,3 +37,6 @@ img.login_mask { width:201px; height:5px; background:#3d3d3d; display:block;} #openid_login form .idpw p { margin-bottom:5px; background: url(../images/openid_login_bg.gif) left no-repeat; padding-left:18px; font-size:.9em Tahoma;color:#999999} #openid_login form .idpw input { border:1px solid #6b6b6b; color:#cbcbcb; width:105px; background:#515151; padding:1px 5px; margin-bottom:2px; font:.9em Tahoma;} #openid_login form .login { float:right;} +#openid_login form p.save { clear:both; padding:.3em 0;} +#openid_login form p.save input { vertical-align:middle; _margin:-3px;} +*:first-child+html body #openid_login form p input { margin:-3px; } diff --git a/widgets/login_info/skins/xe_official/css/default.css b/widgets/login_info/skins/xe_official/css/default.css index 975bf2b14..46e93b6d2 100644 --- a/widgets/login_info/skins/xe_official/css/default.css +++ b/widgets/login_info/skins/xe_official/css/default.css @@ -36,3 +36,7 @@ img.login_mask { width:201px; height:5px; background:#ffffff; display:block;} #openid_login form .idpw p { margin-bottom:5px; background: url(../images/openid_login_bg.gif) left no-repeat; padding-left:18px; font-size:.9em Tahoma;color:#999999} #openid_login form .idpw input { border:1px solid #c9c9c9; color:#282828; width:105px; background:#fbfbfb; padding:1px 5px; margin-bottom:2px; font:.9em Tahoma; } #openid_login form .login { float:right;} +#openid_login form p.save { clear:both; padding:.3em 0;} +#openid_login form p.save input { vertical-align:middle; _margin:-3px;} +*:first-child+html body #openid_login form p input { margin:-3px; } +#openid_login form p.save label { font:.9em "돋움", Dotum, "굴림", Gulim, AppleGothic, Sans-serif; color:#999999;} diff --git a/widgets/login_info/skins/xe_official/js/login.js b/widgets/login_info/skins/xe_official/js/login.js index da278dc3b..37f18288a 100644 --- a/widgets/login_info/skins/xe_official/js/login.js +++ b/widgets/login_info/skins/xe_official/js/login.js @@ -32,5 +32,16 @@ function completeOpenIDLogin(ret_obj, response_tags) { location.href = redirect_url; } - - +/* 오픈 아이디 폼 변환 */ +function toggleLoginForm(obj) { + if(xGetElementById('login').style.display != "none") { + xGetElementById('login').style.display = "none"; + xGetElementById('openid_login').style.display = "block"; + xGetElementById('use_open_id_2').checked = true; + } else { + xGetElementById('openid_login').style.display = "none"; + xGetElementById('login').style.display = "block"; + xGetElementById('use_open_id').checked = false; + xGetElementById('use_open_id_2').checked = false; + } +} diff --git a/widgets/login_info/skins/xe_official/login_form.html b/widgets/login_info/skins/xe_official/login_form.html index de43513da..1171d6adb 100644 --- a/widgets/login_info/skins/xe_official/login_form.html +++ b/widgets/login_info/skins/xe_official/login_form.html @@ -24,8 +24,12 @@
- + + + + +
-