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 1c19b6a commit 29a3fcc
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 17 deletions.
4 changes: 2 additions & 2 deletions style.cfg
Expand Up @@ -21,8 +21,8 @@
# General Information about this style
name = Cynthia
copyright = © nextgen
style_version = 1.3.5
phpbb_version = 3.3.10
style_version = 1.3.6
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 @@ -31,7 +31,7 @@
<li class="row<!-- IF forumrow.S_ROW_COUNT is even --> row1<!-- ELSE --> row2<!-- ENDIF -->">
<!-- 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 @@ -54,7 +54,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
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: 1em;
line-height: 1.6em;
border-left-width: 0;
margin: 2px 0 4px 0;
color: #FFFFFF;
Expand Down Expand Up @@ -868,3 +872,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;
}
3 changes: 3 additions & 0 deletions theme/forms.css
Expand Up @@ -259,6 +259,9 @@ fieldset.submit-buttons input {

.message-box textarea {
font-family: 'Electrolize', Verdana, Helvetica, Arial, sans-serif;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 450px;
height: 270px;
min-width: 100%;
Expand Down
Binary file removed theme/images/icon_search.gif
Binary file not shown.
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

0 comments on commit 29a3fcc

Please sign in to comment.