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 to the most recent phpBB version
  • Loading branch information
melvingb committed Dec 28, 2023
1 parent c46599a commit 696edeb
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 19 deletions.
4 changes: 2 additions & 2 deletions style.cfg
Expand Up @@ -21,8 +21,8 @@
# General Information about this style
name = fisubice3
copyright = © Darren Burnhill, phpBBservice.nl 2007, © AS (Allan Style), © nextgen 2021
style_version = 3.1.0-RC3
phpbb_version = 3.3.10
style_version = 3.1.0
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 @@ -39,7 +39,7 @@
<li class="row">
<!-- EVENT forumlist_body_forum_row_prepend -->
<dl class="row-item {forumrow.FORUM_IMG_STYLE}">
<dt title="{forumrow.FORUM_FOLDER_IMG_ALT}">
<dt title="{% if forumrow.S_IS_LINK %}{{ lang('FORUM_LINK') }}{% else %}{{ forumrow.FORUM_FOLDER_IMG_ALT }}{% endif %}">
<!-- IF forumrow.S_UNREAD_FORUM --><a href="{forumrow.U_VIEWFORUM}" class="row-item-link"></a><!-- ENDIF -->
<div class="list-inner">
<!-- IF S_ENABLE_FEEDS and forumrow.S_FEED_ENABLED -->
Expand All @@ -63,7 +63,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 @@ -31,7 +31,7 @@
<link href="{T_THEME_PATH}/bidi.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<!-- ENDIF -->

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

Expand Down
2 changes: 2 additions & 0 deletions template/viewtopic_body.html
Expand Up @@ -342,6 +342,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
16 changes: 15 additions & 1 deletion theme/content.css
Expand Up @@ -88,6 +88,10 @@ ul.topiclist dfn {
margin-right: 5px;
}

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

li.row {
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
Expand All @@ -98,7 +102,7 @@ li.row strong {
}

li.header dt, li.header dd {
line-height: 1.1em;
line-height: 1.6em;
border-left-width: 0;
margin: 7px 0 5px 0;
padding-top: 2px;
Expand Down Expand Up @@ -923,3 +927,13 @@ table.fixed-width-table {
#memberlist tr.inactive, #team tr.inactive {
font-style: italic;
}

/* Memberlist
----------------------------------------*/
.group-description {
font-size: 1.3em;
}

.group-description ul {
list-style-position: inside;
}
12 changes: 0 additions & 12 deletions theme/responsive.css
Expand Up @@ -22,18 +22,6 @@

.section-viewtopic .search-box .inputbox {
width: 57px;
}

.action-bar .search-box .inputbox ::-moz-placeholder {
content: "Search...";
}

.action-bar .search-box .inputbox :-ms-input-placeholder {
content: "Search...";
}

.action-bar .search-box .inputbox ::-webkit-input-placeholder {
content: "Search...";
}
}

Expand Down
2 changes: 1 addition & 1 deletion theme/stylesheet.css
Expand Up @@ -3,7 +3,7 @@
Style name: fisubice3
Based on style: prosilver (the default phpBB 3.3.x style)
Original author: Tom Beddard ( http://www.subblue.com/ )
Modified by: Darren Burnhill, Raimon, SKRS, Melvin García ( https://www.melvingarcia.com/ )
Modified by: Darren Burnhill, Raimon, SKRS, nextgen ( https://www.nextgen.gt/ )
--------------------------------------------------------------
*/

Expand Down

0 comments on commit 696edeb

Please sign in to comment.