mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-26 03:48:53 +00:00
#7258 #7268 #7278 #7314 git-svn-id: file:///svn/phpbb/trunk@6914 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
fcfe045307
commit
61d4209aaf
4 changed files with 26 additions and 15 deletions
|
@ -118,6 +118,15 @@
|
||||||
|
|
||||||
<br /><br /><br />
|
<br /><br /><br />
|
||||||
|
|
||||||
|
<!-- DIRTY DIRTY DIRTY IE -->
|
||||||
|
<!--[if lt IE 8]>
|
||||||
|
<style type="text/css">
|
||||||
|
input.langvalue, textarea.langvalue {
|
||||||
|
width: 450px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
< ![endif]-->
|
||||||
|
|
||||||
<table cellspacing="1">
|
<table cellspacing="1">
|
||||||
<thead>
|
<thead>
|
||||||
<!-- IF S_EMAIL_FILE -->
|
<!-- IF S_EMAIL_FILE -->
|
||||||
|
|
|
@ -381,7 +381,6 @@ fieldset {
|
||||||
border-top: 1px solid #D5D5C8;
|
border-top: 1px solid #D5D5C8;
|
||||||
background-color: #ECECEC;
|
background-color: #ECECEC;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 10;
|
|
||||||
}
|
}
|
||||||
legend {
|
legend {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -392,7 +391,6 @@ legend {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
line-height: 100%;
|
line-height: 100%;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
z-index: 20;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fieldset p {
|
fieldset p {
|
||||||
|
@ -414,6 +412,10 @@ input {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input.langvalue, textarea.langvalue {
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
||||||
font-size: 100%;
|
font-size: 100%;
|
||||||
|
@ -1170,7 +1172,7 @@ fieldset.perm .perm_switch {
|
||||||
background-color: #E4E8EB;
|
background-color: #E4E8EB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.perm_panel th a {
|
.perm_panel th a:link, .perm_panel th a:hover, .perm_panel th a:visited {
|
||||||
display: block;
|
display: block;
|
||||||
color: #FFA34F;
|
color: #FFA34F;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
|
|
@ -1101,7 +1101,7 @@ $lang = array_merge($lang, array(
|
||||||
$tpl .= ($textarea) ? '<textarea name="' : '<input type="text" name="';
|
$tpl .= ($textarea) ? '<textarea name="' : '<input type="text" name="';
|
||||||
$tpl .= 'entry[' . implode('][', array_map('utf8_htmlspecialchars', $keys)) . ']"';
|
$tpl .= 'entry[' . implode('][', array_map('utf8_htmlspecialchars', $keys)) . ']"';
|
||||||
|
|
||||||
$tpl .= ($textarea) ? ' cols="80" rows="5" style="width: 90%;">' : ' style="width: 90%" value="';
|
$tpl .= ($textarea) ? ' cols="80" rows="5" class="langvalue">' : ' class="langvalue" value="';
|
||||||
$tpl .= htmlspecialchars($value, ENT_COMPAT, 'UTF-8');
|
$tpl .= htmlspecialchars($value, ENT_COMPAT, 'UTF-8');
|
||||||
$tpl .= ($textarea) ? '</textarea>' : '" />';
|
$tpl .= ($textarea) ? '</textarea>' : '" />';
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
<p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
|
<p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</td>
|
</td>
|
||||||
<td class="row2" width="100" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
|
<td class="row2" width="130" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
|
||||||
<td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
|
<td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
|
||||||
<td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
|
<td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
|
||||||
<td class="row1" width="140" align="center">
|
<td class="row1" width="140" align="center">
|
||||||
|
@ -203,7 +203,7 @@
|
||||||
<p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
|
<p class="gensmall"> [ {GOTO_PAGE_IMG}{L_GOTO_PAGE}: {topicrow.PAGINATION} ] </p>
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</td>
|
</td>
|
||||||
<td class="row2" width="100" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
|
<td class="row2" width="130" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
|
||||||
<td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
|
<td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
|
||||||
<td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
|
<td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
|
||||||
<td class="row1" width="140" align="center">
|
<td class="row1" width="140" align="center">
|
||||||
|
@ -273,33 +273,33 @@
|
||||||
<td align="left" valign="top">
|
<td align="left" valign="top">
|
||||||
<table cellspacing="3" cellpadding="0" border="0">
|
<table cellspacing="3" cellpadding="0" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20" align="left">{FOLDER_NEW_IMG}</td>
|
<td width="20" style="text-align: center;">{FOLDER_NEW_IMG}</td>
|
||||||
<td class="gensmall">{L_NEW_POSTS}</td>
|
<td class="gensmall">{L_NEW_POSTS}</td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td width="20" align="center">{FOLDER_IMG}</td>
|
<td width="20" style="text-align: center;">{FOLDER_IMG}</td>
|
||||||
<td class="gensmall">{L_NO_NEW_POSTS}</td>
|
<td class="gensmall">{L_NO_NEW_POSTS}</td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td width="20" align="center">{FOLDER_ANNOUNCE_IMG}</td>
|
<td width="20" style="text-align: center;">{FOLDER_ANNOUNCE_IMG}</td>
|
||||||
<td class="gensmall">{L_ICON_ANNOUNCEMENT}</td>
|
<td class="gensmall">{L_ICON_ANNOUNCEMENT}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td width="20" align="center">{FOLDER_HOT_NEW_IMG}</td>
|
<td style="text-align: center;">{FOLDER_HOT_NEW_IMG}</td>
|
||||||
<td class="gensmall">{L_NEW_POSTS_HOT}</td>
|
<td class="gensmall">{L_NEW_POSTS_HOT}</td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td width="20" align="center">{FOLDER_HOT_IMG}</td>
|
<td style="text-align: center;">{FOLDER_HOT_IMG}</td>
|
||||||
<td class="gensmall">{L_NO_NEW_POSTS_HOT}</td>
|
<td class="gensmall">{L_NO_NEW_POSTS_HOT}</td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td width="20" align="center">{FOLDER_STICKY_IMG}</td>
|
<td style="text-align: center;">{FOLDER_STICKY_IMG}</td>
|
||||||
<td class="gensmall">{L_ICON_STICKY}</td>
|
<td class="gensmall">{L_ICON_STICKY}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="gensmall">{FOLDER_LOCKED_NEW_IMG}</td>
|
<td style="text-align: center;">{FOLDER_LOCKED_NEW_IMG}</td>
|
||||||
<td class="gensmall">{L_NEW_POSTS_LOCKED}</td>
|
<td class="gensmall">{L_NEW_POSTS_LOCKED}</td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td class="gensmall">{FOLDER_LOCKED_IMG}</td>
|
<td style="text-align: center;">{FOLDER_LOCKED_IMG}</td>
|
||||||
<td class="gensmall">{L_NO_NEW_POSTS_LOCKED}</td>
|
<td class="gensmall">{L_NO_NEW_POSTS_LOCKED}</td>
|
||||||
<td> </td>
|
<td> </td>
|
||||||
<td width="20" align="center">{FOLDER_MOVED_IMG}</td>
|
<td style="text-align: center;">{FOLDER_MOVED_IMG}</td>
|
||||||
<td class="gensmall">{L_MOVED_TOPIC}</td>
|
<td class="gensmall">{L_MOVED_TOPIC}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Add table
Reference in a new issue