diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2004-09-01 15:47:46 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2004-09-01 15:47:46 +0000 |
| commit | 070cbefa461d53031b6fa8a168c3e9c9db539fb0 (patch) | |
| tree | 9fcb30f2d3360c5805935226aad8234ab254beb5 /phpBB/styles | |
| parent | 3c8e36b458742116a41f90421e20251df97c528c (diff) | |
| download | forums-070cbefa461d53031b6fa8a168c3e9c9db539fb0.tar forums-070cbefa461d53031b6fa8a168c3e9c9db539fb0.tar.gz forums-070cbefa461d53031b6fa8a168c3e9c9db539fb0.tar.bz2 forums-070cbefa461d53031b6fa8a168c3e9c9db539fb0.tar.xz forums-070cbefa461d53031b6fa8a168c3e9c9db539fb0.zip | |
This is a mass commit ... expect trouble! Changes made here are primarily to how login is handled, schema changes necessary!
git-svn-id: file:///svn/phpbb/trunk@4970 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
6 files changed, 21 insertions, 14 deletions
diff --git a/phpBB/styles/subSilver/template/login_body.html b/phpBB/styles/subSilver/template/login_body.html index 888e3907df..58734462dd 100644 --- a/phpBB/styles/subSilver/template/login_body.html +++ b/phpBB/styles/subSilver/template/login_body.html @@ -5,7 +5,7 @@ <form action="{S_LOGIN_ACTION}" method="post"> <table class="tablebg" width="100%" cellspacing="1"> - <tr> + <tr> <th colspan="2">{L_LOGIN}</th> </tr> <!-- IF LOGIN_EXPLAIN --> @@ -13,7 +13,7 @@ <td class="row3" colspan="2" align="center"><span class="gensmall">{LOGIN_EXPLAIN}</td> </tr> <!-- ENDIF --> - <tr> + <tr> <td class="row1" width="50%"> <p class="genmed">{L_LOGIN_INFO}</p> @@ -27,15 +27,16 @@ </tr> <!-- ENDIF --> - <tr> + <tr> <td><b class="gensmall">{L_USERNAME}:</b></td> <td><input class="post" type="text" name="username" size="25" maxlength="40" value="{USERNAME}" tabindex="1" /><br /><a class="gensmall" href="{U_REGISTER}">{L_REGISTER}</a></td> </tr> - <tr> + <tr> <td><b class="gensmall">{L_PASSWORD}:</b></td> <td><input class="post" type="password" name="password" size="25" maxlength="25" tabindex="2" /><br /><a class="gensmall" href="{U_SEND_PASSWORD}">{L_FORGOT_PASS}</a></td> </tr> - <tr> + <!-- IF S_DISPLAY_FULL_LOGIN --> + <tr> <td> </td> <td><input type="checkbox" name="autologin" tabindex="4" /> <span class="gensmall">{L_LOG_ME_IN}</span></td> </tr> @@ -43,9 +44,10 @@ <td> </td> <td><input type="checkbox" name="viewonline" tabindex="5" /> <span class="gensmall">{L_HIDE_ME}</span></td> </tr> + <!-- ENDIF --> </table></td> </tr> - <tr> + <tr> <td class="cat" colspan="2" align="center">{S_HIDDEN_FIELDS}<input type="submit" name="login" class="btnmain" value="{L_LOGIN}" tabindex="3" /></td> </tr> </table></form> diff --git a/phpBB/styles/subSilver/template/memberlist_body.html b/phpBB/styles/subSilver/template/memberlist_body.html index c4ba3fdb3b..e13f8bfc95 100644 --- a/phpBB/styles/subSilver/template/memberlist_body.html +++ b/phpBB/styles/subSilver/template/memberlist_body.html @@ -4,10 +4,10 @@ <div id="pagecontent"> -<!-- You should retain this javascript in your own template! --> - <!-- IF S_SEARCH_USER --><!-- INCLUDE memberlist_search.html --><!-- ENDIF --> +<!-- IF S_SHOW_GROUP --><!-- INCLUDE memberlist_group.html --><!-- ENDIF --> + <!-- IF S_SEARCH_USER --> <form method="post" name="results" action="{S_MODE_ACTION}" onsubmit="insert_marked(this.user);return false"> <!-- ELSEIF U_FIND_MEMBER--> @@ -41,7 +41,7 @@ <!-- ENDIF --> <td class="gen" align="center"> {memberrow.ROW_NUMBER} </td> - <td class="gen" align="center"><a href="{memberrow.U_VIEWPROFILE}"><!-- IF memberrow.USER_COLOR --><b style="color:{memberrow.USER_COLOR}"><!-- ELSE --><b><!-- ENDIF -->{memberrow.USERNAME}</b></a></td> + <td class="gen" align="center"><strong><a<!-- IF memberrow.USER_COLOR --> style="color:#{memberrow.USER_COLOR}"<!-- ENDIF --> href="{memberrow.U_VIEWPROFILE}">{memberrow.USERNAME}</a></strong></td> <td class="gensmall" align="center" nowrap="nowrap"> {memberrow.JOINED} </td> <td class="gen" align="center">{memberrow.POSTS}</td> <td class="gen" align="center">{memberrow.RANK_IMG}</td> diff --git a/phpBB/styles/subSilver/template/memberlist_search.html b/phpBB/styles/subSilver/template/memberlist_search.html index 2243672dc9..244af92aad 100644 --- a/phpBB/styles/subSilver/template/memberlist_search.html +++ b/phpBB/styles/subSilver/template/memberlist_search.html @@ -1,4 +1,6 @@ +<!-- You should retain this javascript in your own template! --> + <script language="javascript" type="text/javascript"> <!-- function insert_user(user) diff --git a/phpBB/styles/subSilver/template/memberlist_view.html b/phpBB/styles/subSilver/template/memberlist_view.html index 68ee2c703b..452d5f3188 100644 --- a/phpBB/styles/subSilver/template/memberlist_view.html +++ b/phpBB/styles/subSilver/template/memberlist_view.html @@ -4,7 +4,7 @@ <div id="pagecontent"> - <table class="tablebg" width="100%" cellspacing="1"> + <form method="post" action="{S_PROFILE_ACTION}"><table class="tablebg" width="100%" cellspacing="1"> <tr> <th colspan="2" nowrap="nowrap">{L_VIEWING_PROFILE}</th> </tr> diff --git a/phpBB/styles/subSilver/template/overall_header.html b/phpBB/styles/subSilver/template/overall_header.html index d9ad8a9abd..4b2e8f7204 100644 --- a/phpBB/styles/subSilver/template/overall_header.html +++ b/phpBB/styles/subSilver/template/overall_header.html @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="{S_CONTENT_ENCODING}"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}"> <head> @@ -53,7 +53,7 @@ function jumpto() <a name="top"></a> <div id="wrapheader"> - + <div id="logodesc"><table width="100%" cellspacing="0"> <tr> <td><a href="{U_INDEX}"><img src="{T_THEME_PATH}/images/sitelogo.jpg" border="0" alt="" title="" /></a></td> diff --git a/phpBB/styles/subSilver/theme/stylesheet.css b/phpBB/styles/subSilver/theme/stylesheet.css index ec71cb5342..f9d815ad3e 100644 --- a/phpBB/styles/subSilver/theme/stylesheet.css +++ b/phpBB/styles/subSilver/theme/stylesheet.css @@ -86,13 +86,16 @@ p.postapprove { margin: 1px 0px; color: green; } /* TABLE */ -th { height: 28px; color: #FFA34F; font-size: 70%; font-weight: bold; background-color: #006699; background-image: url('./images/cellpic3.gif'); white-space: nowrap; } +th { height: 28px; color: #FFA34F; font-size: 70%; font-weight: bold; background-color: #006699; background-image: url('./images/cellpic3.gif'); white-space: nowrap; padding-left: 5px; padding-right: 5px; } .tablebg { background-color: #A9B8C2; } .catdiv { height: 28px; margin: 0px; padding: 0px; border: 0px; background-color: white; background-image: url('./images/cellpic2.jpg'); background-repeat: repeat-y; } .cat { height: 28px; margin: 0px; padding: 0px; border: 0px; background-color: #C7D0D7; background-image: url('./images/cellpic1.gif'); text-indent: 4px; } .row1 { background-color: #ECECEC; padding: 4px; } .row2 { background-color: #DCE1E5; padding: 4px; } -.row3 { background-color: #C7CFD7; padding: 4px; } +.row3 { background-color: #C0C8D0; padding: 4px; } +.rowgood { background-color: #C2D6CD; padding: 4px; } +.rowneutral { background-color: #CAC1D7; padding: 4px; } +.rowbad { background-color: #D7C1C3; padding: 4px; } .spacer { background-color: #D1D7DC; } hr { height: 1px; border-width: 0px; background-color: #D1D7DC; color: #D1D7DC } |
