Skip to content

Commit

Permalink
Style update to phpBB 3.3.11
Browse files Browse the repository at this point in the history
Style update for the most recent phpBB version
  • Loading branch information
melvingb committed Dec 28, 2023
1 parent 029858c commit a43cd1a
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions style.cfg
Expand Up @@ -21,8 +21,8 @@
# General Information about this style
name = we_clearblue
copyright = © INVENTEA, © nextgen, 2021
style_version = 2.3.4
phpbb_version = 3.3.10
style_version = 2.3.5
phpbb_version = 3.3.11

# Defining a different template bitfield
# template_bitfield = //g=
Expand Down
4 changes: 2 additions & 2 deletions template/forumlist_body.html
Expand Up @@ -30,7 +30,7 @@
<!-- EVENT forumlist_body_forum_row_before -->
<li class="row">
<!-- EVENT forumlist_body_forum_row_prepend -->
<dl title="{forumrow.FORUM_FOLDER_IMG_ALT}">
<dl title="{% if forumrow.S_IS_LINK %}{{ lang('FORUM_LINK') }}{% else %}{{ forumrow.FORUM_FOLDER_IMG_ALT }}{% endif %}">
<dt class="row-item {forumrow.FORUM_IMG_STYLE}"></dt>
<dd>
<!-- IF forumrow.S_UNREAD_FORUM --><a href="{forumrow.U_VIEWFORUM}" class="row-item-link"></a><!-- ENDIF -->
Expand All @@ -57,7 +57,7 @@
<!-- EVENT forumlist_body_subforums_before -->
<br /><strong>{forumrow.L_SUBFORUM_STR}{L_COLON}</strong>
<!-- BEGIN subforum -->
<!-- EVENT forumlist_body_subforum_link_prepend --><a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.S_UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">
<!-- EVENT forumlist_body_subforum_link_prepend --><a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="{% if forumrow.subforum.IS_LINK %}{{ lang('FORUM_LINK') }}{% elseif forumrow.subforum.S_UNREAD %}{{ lang('UNREAD_POSTS') }}{% else %}{{ lang('NO_UNREAD_POSTS') }}{% endif %}">
<i class="icon <!-- IF forumrow.subforum.IS_LINK -->fa-external-link<!-- ELSE -->fa-file-o<!-- ENDIF --> fa-fw <!-- IF forumrow.subforum.S_UNREAD --> icon-red<!-- ELSE --> icon-blue<!-- ENDIF --> icon-md" aria-hidden="true"></i>{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF --><!-- EVENT forumlist_body_subforum_link_append -->
<!-- END subforum -->
<!-- EVENT forumlist_body_subforums_after -->
Expand Down
2 changes: 1 addition & 1 deletion template/simple_header.html
Expand Up @@ -33,7 +33,7 @@
<link href="{ROOT_PATH}styles/prosilver/theme/bidi.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<!-- ENDIF -->

<!--[if lte IE 8]>
<!--[if lte IE 9]>
<link href="{ROOT_PATH}styles/prosilver/theme/tweaks.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<![endif]-->

Expand Down
2 changes: 2 additions & 0 deletions template/viewtopic_body.html
Expand Up @@ -344,6 +344,8 @@ <h3 {% if postrow.S_FIRST_ROW %}class="first"{% endif %}>
</p>
<!-- ENDIF -->

{% EVENT viewtopic_body_postrow_content_before %}

<div class="content">{postrow.MESSAGE}</div>

<!-- EVENT viewtopic_body_postrow_content_after -->
Expand Down
4 changes: 4 additions & 0 deletions theme/content.css
Expand Up @@ -37,6 +37,10 @@ table.table1 tbody tr {
border-bottom: 0;
}

.forum-image img {
max-width: 100%;
}

ul.topics .bg1,
ul.topics .bg2,
li.row:hover,
Expand Down
3 changes: 3 additions & 0 deletions theme/forms.css
Expand Up @@ -55,6 +55,9 @@ textarea,
}

.message-box textarea {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #414141;
line-height: 21px;
font-size: 14px;
Expand Down
2 changes: 1 addition & 1 deletion theme/stylesheet.css
Expand Up @@ -3,7 +3,7 @@
Style name: we_clearblue
Based on style: prosilver (the default phpBB 3.3.x style)
Original author: Tom Beddard ( http://www.subblue.com/ )
Modified by: Melvin García ( http://www.melvingarcia.com/ )
Modified by: nextgen ( https://nextgen.gt/ )
--------------------------------------------------------------
*/

Expand Down

0 comments on commit a43cd1a

Please sign in to comment.