mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge remote-tracking branch 'cyberalien/ticket/11789' into develop-olympus
* cyberalien/ticket/11789: [ticket/11789] Remove colors from HTML code
This commit is contained in:
commit
20fb220b4f
4 changed files with 13 additions and 5 deletions
|
@ -160,7 +160,7 @@ function marklist(id, name, state)
|
||||||
<td class="genmed">
|
<td class="genmed">
|
||||||
<!-- IF not S_IS_BOT --><a href="{U_LOGIN_LOGOUT}"><img src="{T_THEME_PATH}/images/icon_mini_login.gif" width="12" height="13" alt="*" /> {L_LOGIN_LOGOUT}</a> <!-- ENDIF -->
|
<!-- IF not S_IS_BOT --><a href="{U_LOGIN_LOGOUT}"><img src="{T_THEME_PATH}/images/icon_mini_login.gif" width="12" height="13" alt="*" /> {L_LOGIN_LOGOUT}</a> <!-- ENDIF -->
|
||||||
<!-- IF U_RESTORE_PERMISSIONS --> <a href="{U_RESTORE_PERMISSIONS}"><img src="{T_THEME_PATH}/images/icon_mini_login.gif" width="12" height="13" alt="*" /> {L_RESTORE_PERMISSIONS}</a><!-- ENDIF -->
|
<!-- IF U_RESTORE_PERMISSIONS --> <a href="{U_RESTORE_PERMISSIONS}"><img src="{T_THEME_PATH}/images/icon_mini_login.gif" width="12" height="13" alt="*" /> {L_RESTORE_PERMISSIONS}</a><!-- ENDIF -->
|
||||||
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --> <span style="color: red;">{L_BOARD_DISABLED}</span><!-- ENDIF -->
|
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --> <span class="error">{L_BOARD_DISABLED}</span><!-- ENDIF -->
|
||||||
<!-- IF not S_IS_BOT -->
|
<!-- IF not S_IS_BOT -->
|
||||||
<!-- IF S_USER_LOGGED_IN -->
|
<!-- IF S_USER_LOGGED_IN -->
|
||||||
<!-- IF S_DISPLAY_PM --> <a href="{U_PRIVATEMSGS}"><img src="{T_THEME_PATH}/images/icon_mini_message.gif" width="12" height="13" alt="*" /> {PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></a><!-- ENDIF -->
|
<!-- IF S_DISPLAY_PM --> <a href="{U_PRIVATEMSGS}"><img src="{T_THEME_PATH}/images/icon_mini_message.gif" width="12" height="13" alt="*" /> {PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></a><!-- ENDIF -->
|
||||||
|
|
|
@ -123,7 +123,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row1" align="center">
|
<td class="row1" align="center">
|
||||||
|
|
||||||
<b class="genmed" style="color:green">{L_FRIENDS_ONLINE}</b>
|
<b class="genmed online">{L_FRIENDS_ONLINE}</b>
|
||||||
|
|
||||||
<ul class="nav" style="margin: 0; padding: 0; list-style-type: none; line-height: 175%;">
|
<ul class="nav" style="margin: 0; padding: 0; list-style-type: none; line-height: 175%;">
|
||||||
<!-- BEGIN friends_online -->
|
<!-- BEGIN friends_online -->
|
||||||
|
@ -139,7 +139,7 @@
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<b class="genmed" style="color:red">{L_FRIENDS_OFFLINE}</b>
|
<b class="genmed offline">{L_FRIENDS_OFFLINE}</b>
|
||||||
|
|
||||||
<ul class="nav" style="margin: 0; padding: 0; list-style-type: none; line-height: 175%;">
|
<ul class="nav" style="margin: 0; padding: 0; list-style-type: none; line-height: 175%;">
|
||||||
<!-- BEGIN friends_offline -->
|
<!-- BEGIN friends_offline -->
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
<td width="100%"<!-- IF history_row.S_CURRENT_MSG --> style="background-color:lightblue"<!-- ENDIF -->>
|
<td width="100%"<!-- IF history_row.S_CURRENT_MSG --> class="current"<!-- ENDIF -->>
|
||||||
<div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};"><b>{L_PM_SUBJECT}:</b> {history_row.SUBJECT}</div><div class="gensmall" style="float: {S_CONTENT_FLOW_END};"><b>{L_FOLDER}:</b> {history_row.FOLDER}</div>
|
<div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};"><b>{L_PM_SUBJECT}:</b> {history_row.SUBJECT}</div><div class="gensmall" style="float: {S_CONTENT_FLOW_END};"><b>{L_FOLDER}:</b> {history_row.FOLDER}</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -292,7 +292,11 @@ p.topicdetails {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.error {
|
.online {
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.offline, .error {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -360,6 +364,10 @@ td.profile {
|
||||||
background-color: #D1D7DC;
|
background-color: #D1D7DC;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.current {
|
||||||
|
background-color: lightblue;
|
||||||
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
height: 1px;
|
height: 1px;
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue