#6 Mise à jour phpBB 3.3.15 à phpBB 3.3.16-RC1

Mise à jour phpBB 3.3.15 à phpBB 3.3.16-RC1
Pour mettre à jour prosilver et vos styles enfants hérités de prosilver.



►Modification CSS

Ouvrir ./styles/prosilver/theme/bidi.css

👉🏾 Trouver & SUPPRIMER ceci

Code : Tout sélectionner

.rtl ul.topiclist dfn {
	left: auto;
	right: -999px;
}

Ouvrir ./styles/prosilver/theme/content.css

👉🏾 Trouver

Code : Tout sélectionner

ul.topiclist dfn {
	/* Labels for post/view counts */
	position: absolute;
	left: -999px;
	width: 990px;
}
  • 🔄 Remplacer par

    Code : Tout sélectionner

    ul.topiclist dfn {
    	/* Labels for post/view counts */
    	border: 0;
    	position: absolute;
    	overflow: hidden;
    	clip: rect(0, 0, 0, 0);
    	width: 1px;
    	height: 1px;
    	margin: -1px;
    	padding: 0;
    }

Ouvrir ./styles/prosilver/theme/stylesheet.css

👉🏾 Trouver

Code : Tout sélectionner

@import url("content.css?hash=d0e24377");



► Modification composer.json

Pour le fichier composer.json remplacer la section comme ci

Code : Tout sélectionner

# General Information about this style
name = prosilver
copyright = © phpBB Limited, 2007
style_version = 3.3.16
phpbb_version = 3.3.16




►Modification template

Ouvrir ./styles/prosilver/template/navbar_footer.html

👉🏾 Trouver

Code : Tout sélectionner

		<!-- IF U_WATCH_FORUM_LINK and not S_IS_BOT -->
			<li data-last-responsive="true">
				<a href="{U_WATCH_FORUM_LINK}" title="{S_WATCH_FORUM_TITLE}" data-ajax="toggle_link" data-toggle-class="icon <!-- IF S_WATCHING_FORUM -->fa-bell<!-- ELSE -->fa-bell<!-- ENDIF --> fa-fw" data-toggle-text="{S_WATCH_FORUM_TOGGLE}" data-toggle-url="{U_WATCH_FORUM_TOGGLE}">
					<i class="icon <!-- IF S_WATCHING_FORUM -->fa-bell<!-- ELSE -->fa-bell-o<!-- ENDIF --> fa-fw" aria-hidden="true"></i><span>{S_WATCH_FORUM_TITLE}</span>
				</a>
			</li>
		<!-- ENDIF -->
  • 🔄 Remplacer par

    Code : Tout sélectionner

    		{% if U_WATCH_FORUM_LINK && !S_IS_BOT %}
    			<li data-last-responsive="true">
    				<a href="{{ U_WATCH_FORUM_LINK }}" title="{{ S_WATCH_FORUM_TITLE }}" data-ajax="toggle_link" data-toggle-class="icon {{ !S_WATCHING_FORUM ? 'fa-check-square-o' : 'fa-square-o' }} fa-fw" data-toggle-text="{{ S_WATCH_FORUM_TOGGLE }}" data-toggle-url="{{ U_WATCH_FORUM_TOGGLE }}">
    					<i class="icon {{ S_WATCHING_FORUM ? 'fa-check-square-o' : 'fa-square-o' }} fa-fw" aria-hidden="true"></i><span>{{ S_WATCH_FORUM_TITLE }}</span>
    				</a>
    			</li>
    		{% endif %}

Ouvrir ./styles/prosilver/template/search_results.html

👉🏾 Trouver

Code : Tout sélectionner

						<!-- IF searchresults.S_UNREAD_TOPIC and not S_IS_BOT --><a href="{searchresults.U_NEWEST_POST}" class="row-item-link"></a><!-- ENDIF -->
						<div class="list-inner">
							<!-- EVENT topiclist_row_prepend -->
							<!-- IF searchresults.S_UNREAD_TOPIC and not S_IS_BOT -->
								<a class="unread" href="{searchresults.U_NEWEST_POST}">
									<i class="icon fa-file fa-fw icon-red icon-md" aria-hidden="true"></i><span class="sr-only">{L_NEW_POST}</span>
								</a>
							<!-- ENDIF -->
							<a href="{searchresults.U_VIEW_TOPIC}" class="topictitle">{searchresults.TOPIC_TITLE}</a>
  • 🔄 Remplacer par

    Code : Tout sélectionner

    						{% if searchresults.U_NEWEST_POST and searchresults.S_UNREAD_TOPIC and not S_IS_BOT %}<a href="{{ searchresults.U_NEWEST_POST }}" class="row-item-link"></a>{% endif %}
    						<div class="list-inner">
    							<!-- EVENT topiclist_row_prepend -->
    							{% if searchresults.U_NEWEST_POST and searchresults.S_UNREAD_TOPIC and not S_IS_BOT %}
    								<a class="unread" href="{searchresults.U_NEWEST_POST}">
    									<i class="icon fa-file fa-fw icon-red icon-md" aria-hidden="true"></i><span class="sr-only">{L_NEW_POST}</span>
    								</a>
    							{% endif %}
    							{% if searchresults.U_VIEW_TOPIC %}<a href="{{ searchresults.U_VIEW_TOPIC }}" class="topictitle">{{ searchresults.TOPIC_TITLE }}</a>{% else %}{{ searchresults.TOPIC_TITLE }}{% endif %}
👉🏾 Trouver

Code : Tout sélectionner

							<!-- IF not S_IS_BOT -->
								<a href="{searchresults.U_LAST_POST}" title="{L_GOTO_LAST_POST}">
									<i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{VIEW_LATEST_POST}</span>
								</a>
							<!-- ENDIF -->
  • 🔄 Remplacer par

    Code : Tout sélectionner

    							{% if not S_IS_BOT and searchresults.U_LAST_POST %}
    								<a href="{searchresults.U_LAST_POST}" title="{L_GOTO_LAST_POST}">
    									<i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{VIEW_LATEST_POST}</span>
    								</a>
    							{% endif %}

Ouvrir ./styles/prosilver/template/ucp_pm_viewmessage.html

👉🏾 Trouver

Code : Tout sélectionner

			<!-- IF S_BCC_RECIPIENT --><br /><strong>{L_BCC}{L_COLON}</strong> <!-- BEGIN bcc_recipient --><!-- IF bcc_recipient.NAME_FULL -->{bcc_recipient.NAME_FULL}<!-- ELSE --><a href="{bcc_recipient.U_VIEW}"<!-- IF bcc_recipient.COLOUR --> style="color:{bcc_recipient.COLOUR};"<!-- ENDIF -->><strong>{bcc_recipient.NAME}</strong></a><!-- ENDIF -->&nbsp;<!-- END bcc_recipient --><!-- ENDIF -->
		</p>
  • 🔄 Remplacer par

    Code : Tout sélectionner

    			<!-- IF S_BCC_RECIPIENT --><br /><strong>{L_BCC}{L_COLON}</strong> <!-- BEGIN bcc_recipient --><!-- IF bcc_recipient.NAME_FULL -->{bcc_recipient.NAME_FULL}<!-- ELSE --><a href="{bcc_recipient.U_VIEW}"<!-- IF bcc_recipient.COLOUR --> style="color:{bcc_recipient.COLOUR};"<!-- ENDIF -->><strong>{bcc_recipient.NAME}</strong></a><!-- ENDIF -->&nbsp;<!-- END bcc_recipient --><!-- ENDIF -->
    		</p>
    
    		{% EVENT ucp_pm_viewmessage_message_content_before %}

Ouvrir ./styles/prosilver/template/viewforum_body.html

👉🏾 Trouver

Code : Tout sélectionner

					<!-- IF topicrow.S_UNREAD_TOPIC and not S_IS_BOT --><a href="{topicrow.U_NEWEST_POST}" class="row-item-link"></a><!-- ENDIF -->
					<div class="list-inner">
						<!-- EVENT topiclist_row_prepend -->
						<!-- IF topicrow.S_UNREAD_TOPIC and not S_IS_BOT -->
							<a class="unread" href="{topicrow.U_NEWEST_POST}">
								<i class="icon fa-file fa-fw icon-red icon-md" aria-hidden="true"></i><span class="sr-only">{NEW_POST}</span>
							</a>
						<!-- ENDIF -->
  • 🔄 Remplacer par

    Code : Tout sélectionner

    					{% if topicrow.U_NEWEST_POST and topicrow.S_UNREAD_TOPIC and not S_IS_BOT %}<a href="{{ topicrow.U_NEWEST_POST }}" class="row-item-link"></a>{% endif %}
    					<div class="list-inner">
    						<!-- EVENT topiclist_row_prepend -->
    						{% if topicrow.U_NEWEST_POST and topicrow.S_UNREAD_TOPIC and not S_IS_BOT %}
    							<a class="unread" href="{topicrow.U_NEWEST_POST}">
    								<i class="icon fa-file fa-fw icon-red icon-md" aria-hidden="true"></i><span class="sr-only">{NEW_POST}</span>
    							</a>
    						{% endif %}

Ouvrir ./styles/prosilver/template/viewtopic_topic_tools.html

👉🏾 Trouver

Code : Tout sélectionner

				<!-- IF U_WATCH_TOPIC -->
					<li>
						<a href="{U_WATCH_TOPIC}" class="watch-topic-link" title="{S_WATCH_TOPIC_TITLE}" data-ajax="toggle_link" data-toggle-class="icon <!-- IF S_WATCHING_TOPIC -->fa-bell-o<!-- ELSE -->fa-bell-o<!-- ENDIF --> fa-fw" data-toggle-text="{S_WATCH_TOPIC_TOGGLE}" data-toggle-url="{U_WATCH_TOPIC_TOGGLE}" data-update-all=".watch-topic-link">
							<i class="icon <!-- IF S_WATCHING_TOPIC -->fa-bell<!-- ELSE -->fa-bell<!-- ENDIF --> fa-fw" aria-hidden="true"></i><span>{S_WATCH_TOPIC_TITLE}</span>
						</a>
					</li>
				<!-- ENDIF -->
  • 🔄 Remplacer par

    Code : Tout sélectionner

    				{% if U_WATCH_TOPIC %}
    					<li>
    						<a href="{{ U_WATCH_TOPIC }}" class="watch-topic-link" title="{{ S_WATCH_TOPIC_TITLE }}" data-ajax="toggle_link" data-toggle-class="icon {{ !S_WATCHING_TOPIC ? 'fa-check-square-o' : 'fa-square-o' }} fa-fw" data-toggle-text="{{ S_WATCH_TOPIC_TOGGLE }}" data-toggle-url="{{ U_WATCH_TOPIC_TOGGLE }}" data-update-all=".watch-topic-link">
    							<i class="icon {{ S_WATCHING_TOPIC ? 'fa-check-square-o' : 'fa-square-o' }} fa-fw" aria-hidden="true"></i><span>{{ S_WATCH_TOPIC_TITLE }}</span>
    						</a>
    					</li>
    				{% endif %}

Source : https://gist.github.com/marc1706/d0390e ... 5d2b24440d

Mots de passe - Connexion