사용자: 아웃로그인 로그인 전 스타일 js 대체

This commit is contained in:
whitedot
2013-01-16 10:19:38 +09:00
parent 0eaee82e27
commit f425bcb203
2 changed files with 3 additions and 1 deletions

View File

@ -102,7 +102,7 @@ a {color:#000;text-decoration:none}
#ol_before input:focus {background:#333;color:#fff}
#ol_id {display:block;margin-bottom:3px;padding:0 5px;width:185px;height:22px;border:1px solid #d7d7d7;background:#fff;line-height:1.6em}
.ol_idlabel {position:absolute;top:23px;left:20px;color:#696969}
#ol_pw {padding:0 5px;width:121px;height:22px;border:1px solid #d7d7d7;background:#fff;line-height:1.6em}
#ol_pw {display:block;padding:0 5px;width:185px;height:22px;border:1px solid #d7d7d7;background:#fff;line-height:1.6em}
.ol_pwlabel {position:absolute;top:50px;left:20px;color:#696969}
#auto_login {}
#auto_login_label {color:#696969;letter-spacing:-0.1em}

View File

@ -29,6 +29,8 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$(function(){
$omi = $('#ol_id');
$omp = $('#ol_pw');
$omp.css('display','inline-block');
$omp.css('width',121);
$omi_label = $('#ol_idlabel');
$omp_label = $('#ol_pwlabel');
$omi_label.addClass('ol_idlabel');