mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-24 21:59:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1662 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
15801d738a
commit
8390ec57e2
75 changed files with 484 additions and 484 deletions
|
|
@ -1,4 +1,4 @@
|
|||
<filter name="plugin_login" module="member" act="procMemberLogin">
|
||||
<filter name="widget_login" module="member" act="procMemberLogin">
|
||||
<form>
|
||||
<node target="user_id" required="true" filter="user_id"/>
|
||||
<node target="password" required="true" />
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<filter name="plugin_logout" module="member" act="procMemberLogout">
|
||||
<filter name="widget_logout" module="member" act="procMemberLogout">
|
||||
<form />
|
||||
<response>
|
||||
<tag name="error" />
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@
|
|||
<!--%import("./filter/openid_login.xml")-->
|
||||
<!--%import("./js/login.js")-->
|
||||
|
||||
<div class="login_plugin">
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, plugin_login)" id="fo_login_plugin">
|
||||
<div class="login_widget">
|
||||
<form action="./" method="get" onsubmit="return procFilter(this, widget_login)" id="fo_login_widget">
|
||||
<div class="login_box">
|
||||
<div class="header">{$lang->user_id}</div>
|
||||
<div class="body">
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
</form>
|
||||
|
||||
<script type="text/javascript">
|
||||
xAddEventListener(window, "load", function(){ doFocusUserId("fo_login_plugin"); });
|
||||
xAddEventListener(window, "load", function(){ doFocusUserId("fo_login_widget"); });
|
||||
</script>
|
||||
|
||||
<!-- OpenID -->
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<!--@end-->
|
||||
|
||||
<!--%import("./filter/logout.xml")-->
|
||||
<div class="login_plugin">
|
||||
<div class="login_widget">
|
||||
|
||||
<!-- 닉네임 + 로그아웃 -->
|
||||
<div class="top_box">
|
||||
|
|
|
|||
|
|
@ -1,92 +1,92 @@
|
|||
.login_plugin {
|
||||
.login_widget {
|
||||
border:3px solid #DDDDDD;
|
||||
padding:6px;
|
||||
margin-bottom:10px;
|
||||
}
|
||||
|
||||
.login_plugin .top_box {
|
||||
.login_widget .top_box {
|
||||
height:22px;
|
||||
border-bottom:2px dotted #DDDDDD;
|
||||
overflow:hidden;
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
.login_plugin .top_box .nick_name {
|
||||
.login_widget .top_box .nick_name {
|
||||
font-weight:bold;
|
||||
float:left;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.login_plugin .top_box .logout {
|
||||
.login_widget .top_box .logout {
|
||||
float:right;
|
||||
}
|
||||
|
||||
.login_plugin .top_box .logout A {
|
||||
.login_widget .top_box .logout A {
|
||||
text-decoration:none;
|
||||
color:#737CF5;
|
||||
}
|
||||
|
||||
.login_plugin .top_box .logout A:hover {
|
||||
.login_widget .top_box .logout A:hover {
|
||||
font-weight:bold;
|
||||
letter-spacing:-1px;
|
||||
color:#151F9E;
|
||||
}
|
||||
|
||||
|
||||
.login_plugin .info_box {
|
||||
.login_widget .info_box {
|
||||
clear:both;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.login_plugin .info_box A:link {
|
||||
.login_widget .info_box A:link {
|
||||
text-decoration:none;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.login_plugin .info_box A:visited {
|
||||
.login_widget .info_box A:visited {
|
||||
text-decoration:none;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.login_plugin .info_box A:hover {
|
||||
.login_widget .info_box A:hover {
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
letter-spacing:-1px;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.login_plugin .info_box div {
|
||||
.login_widget .info_box div {
|
||||
padding-left:15px;
|
||||
margin:0px 0px 4px 0px;
|
||||
}
|
||||
|
||||
.login_plugin .info_box .member_info {
|
||||
.login_widget .info_box .member_info {
|
||||
background:url("../images/icon_profile.gif") no-repeat left;
|
||||
float:left;
|
||||
width:90px;
|
||||
}
|
||||
|
||||
.login_plugin .info_box .friend_list {
|
||||
.login_widget .info_box .friend_list {
|
||||
background:url("../images/icon_friend_list.gif") no-repeat left;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.login_plugin .info_box .message_box {
|
||||
.login_widget .info_box .message_box {
|
||||
background:url("../images/icon_message_box.gif") no-repeat left;
|
||||
float:left;
|
||||
width:90px;
|
||||
}
|
||||
|
||||
.login_plugin .info_box .link_admin {
|
||||
.login_widget .info_box .link_admin {
|
||||
background:url("../images/icon_key.gif") no-repeat left;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.login_plugin .info_box .link_admin A {
|
||||
.login_widget .info_box .link_admin A {
|
||||
color:#cd0000;
|
||||
}
|
||||
|
||||
.login_plugin .info_box .last_login {
|
||||
.login_widget .info_box .last_login {
|
||||
clear:left;
|
||||
background:url("../images/icon_last_login.gif") no-repeat left;
|
||||
padding-left:15px;
|
||||
|
|
@ -94,11 +94,11 @@
|
|||
}
|
||||
|
||||
|
||||
.login_plugin .login_box {
|
||||
.login_widget .login_box {
|
||||
height:40px;
|
||||
}
|
||||
|
||||
.login_plugin .header {
|
||||
.login_widget .header {
|
||||
float:left;
|
||||
clear:left;
|
||||
width:80px;
|
||||
|
|
@ -107,31 +107,31 @@
|
|||
color:#555555;
|
||||
}
|
||||
|
||||
.login_plugin .body {
|
||||
.login_widget .body {
|
||||
float:left;
|
||||
width:100px;
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
.login_plugin .body .input {
|
||||
.login_widget .body .input {
|
||||
width:90px;
|
||||
height:13px;
|
||||
border:1px solid #AAAAAA;
|
||||
color:#555555;
|
||||
}
|
||||
|
||||
.login_plugin .body label {
|
||||
.login_widget .body label {
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.login_plugin .button_area {
|
||||
.login_widget .button_area {
|
||||
clear:both;
|
||||
height:20px;
|
||||
margin-top:5px;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.login_plugin .button_area .submit_button {
|
||||
.login_widget .button_area .submit_button {
|
||||
width:80px;
|
||||
height:18px;
|
||||
border:1px solid #AAAAAA;
|
||||
|
|
@ -140,7 +140,7 @@
|
|||
font-weight:bold;
|
||||
}
|
||||
|
||||
.login_plugin .button_area .signup_button {
|
||||
.login_widget .button_area .signup_button {
|
||||
width:80px;
|
||||
height:18px;
|
||||
border:1px solid #555555;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue