Mise à jour des styles de phpBB 3.2.0 à 3.2.1 Facile

Mise à jour des styles de phpBB 3.2.0 à 3.2.1

Détail des modifications des styles de phpBB 3.2.0 à 3.2.1


1 » Détail des modifications prosilver

Liste des fichiers à modifier :
  • template/ajax.js
  • template/bbcode.html
  • template/display_options.html
  • template/forum_fn.js
  • template/forumlist_body.html
  • template/index_body.html
  • template/jumpbox.html
  • template/mcp_forum.html
  • template/mcp_post.html
  • template/mcp_topic.html
  • template/overall_footer.html
  • template/overall_header.html
  • template/pagination.html
  • template/search_results.html
  • template/simple_header.html
  • template/ucp_pm_viewmessage.html
  • template/viewforum_body.html
  • template/viewtopic_body.html
  • theme/bidi.css
  • theme/colours.css
  • theme/common.css
  • theme/content.css
  • theme/forms.css
  • theme/icons.css
  • theme/links.css
  • theme/print.css
  • theme/responsive.css
  • theme/stylesheet.css
  • style.cfg

template/ajax.js

  1. Trouver (vers ligne 29) :
    Code: Tout sélectionner
    	$('a.subforum[class*="unread"]').removeClass('unread').addClass('read');

    Remplacer par :
    Code: Tout sélectionner
    	$('a.subforum[class*="unread"]').removeClass('unread').addClass('read').children('.icon.icon-red').removeClass('icon-red').addClass('icon-blue');

template/bbcode.html

  1. Trouver (vers ligne 56) :
    Code: Tout sélectionner
    <!-- BEGIN b_open --><strong><!-- END b_open -->

    Remplacer par :
    Code: Tout sélectionner
    <!-- BEGIN b_open --><strong class="text-strong"><!-- END b_open -->

  2. Trouver (vers ligne 62) :
    Code: Tout sélectionner
    <!-- BEGIN i_open --><em><!-- END i_open -->

    Remplacer par :
    Code: Tout sélectionner
    <!-- BEGIN i_open --><em class="text-italics"><!-- END i_open -->

template/display_options.html
  1. Trouver (vers ligne 1) :
    Code: Tout sélectionner
    <div class="dropdown-container dropdown-container-{S_CONTENT_FLOW_BEGIN} dropdown-button-control sort-tools">

    Remplacer par :
    Code: Tout sélectionner
    <div class="dropdown-container dropdown-container-left dropdown-button-control sort-tools">

template/forum_fn.js

  1. Trouver (vers ligne 60) :
    Code: Tout sélectionner
    		if ($this.attr('name').substr(0, name.length) === name) {

    Remplacer par :
    Code: Tout sélectionner
    		if ($this.attr('name').substr(0, name.length) === name && !$this.prop('disabled')) {

  2. Trouver et supprimer (vers ligne 197) :
    Code: Tout sélectionner
    /**
    * Play quicktime file by determining it's width/height
    * from the displayed rectangle area
    */
    function play_qt_file(obj) {
    	'use strict';
    
    	var rectangle = obj.GetRectangle();
    	var width, height;
    
    	if (rectangle) {
    		rectangle = rectangle.split(',');
    		var x1 = parseInt(rectangle[0], 10);
    		var x2 = parseInt(rectangle[2], 10);
    		var y1 = parseInt(rectangle[1], 10);
    		var y2 = parseInt(rectangle[3], 10);
    
    		width = (x1 < 0) ? (x1 * -1) + x2 : x2 - x1;
    		height = (y1 < 0) ? (y1 * -1) + y2 : y2 - y1;
    	} else {
    		width = 200;
    		height = 0;
    	}
    
    	obj.width = width;
    	obj.height = height + 16;
    
    	obj.SetControllerVisible(true);
    	obj.Play();
    }
    

template/forumlist_body.html

  1. Trouver (vers ligne 55) :
    Code: Tout sélectionner
    								<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 -->">
    									<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 -->

    Remplacer par :
    Code: Tout sélectionner
    								<!-- 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 -->">
    									<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 -->

template/index_body.html

  1. Trouver (vers ligne 40) :
    Code: Tout sélectionner
    		{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /> <br />{LOGGED_IN_USER_LIST}
    			<!-- IF LEGEND --><br /><em>{L_LEGEND}{L_COLON} {LEGEND}</em><!-- ENDIF -->
    			<!-- EVENT index_body_block_online_append -->
    		</p>
    	</div>
    <!-- ENDIF -->

    Remplacer par :
    Code: Tout sélectionner
    		{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /> 
    			<!-- IF U_VIEWONLINE -->
    				<br />{LOGGED_IN_USER_LIST}
    				<!-- IF LEGEND --><br /><em>{L_LEGEND}{L_COLON} {LEGEND}</em><!-- ENDIF -->
    			<!-- ENDIF -->
    			<!-- EVENT index_body_block_online_append -->
    		</p>
    	</div>
    <!-- ENDIF -->
    
    <!-- EVENT index_body_birthday_block_before -->

template/jumpbox.html

  1. Trouver (vers ligne 40) :
    Code: Tout sélectionner
    				<li><a href="{jumpbox_forums.LINK}" class="<!-- IF jumpbox_forums.level -->jumpbox-sub-link<!-- ELSEIF jumpbox_forums.S_IS_CAT -->jumpbox-cat-link<!-- ELSE -->jumpbox-forum-link<!-- ENDIF -->"><!-- BEGIN level --><span class="spacer"></span><!-- END level --> <span><!-- IF jumpbox_forums.level --> &#8627; &nbsp;<!-- ENDIF --> {jumpbox_forums.FORUM_NAME}</span></a></li>

    Remplacer par :
    Code: Tout sélectionner
    				<li><a href="{jumpbox_forums.LINK}" class="<!-- IF jumpbox_forums.level -->jumpbox-sub-link<!-- ELSEIF jumpbox_forums.S_IS_CAT -->jumpbox-cat-link<!-- ELSE -->jumpbox-forum-link<!-- ENDIF -->"><!-- BEGIN level --><span class="spacer"></span><!-- END level --> <span><!-- IF jumpbox_forums.level --><!-- IF S_CONTENT_DIRECTION eq 'rtl' -->&#8626;<!-- ELSE -->&#8627;<!-- ENDIF --> &nbsp;<!-- ENDIF --> {jumpbox_forums.FORUM_NAME}</span></a></li>

  2. Trouver (vers ligne 47) :
    Code: Tout sélectionner
    <!-- ELSE -->
    	</br></br>
    	<!-- ENDIF -->

    Remplacer par :
    Code: Tout sélectionner
    <!-- ELSE -->
    	<br /><br />
    	<!-- ENDIF -->

template/mcp_front.html

  1. Trouver (vers ligne 33) :
    Code: Tout sélectionner
    							<a href="{unapproved.U_POST_DETAILS}" class="topictitle">{unapproved.SUBJECT}</a> <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br />

    Remplacer par :
    Code: Tout sélectionner
    							<a href="{unapproved.U_POST_DETAILS}" class="topictitle">{unapproved.SUBJECT}</a> <!-- IF unapproved.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> <br />

  2. Trouver (vers ligne 89) :
    Code: Tout sélectionner
    							<a href="{report.U_POST_DETAILS}#reports" class="topictitle">{report.SUBJECT}</a> <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br />

    Remplacer par :
    Code: Tout sélectionner
    							<a href="{report.U_POST_DETAILS}#reports" class="topictitle">{report.SUBJECT}</a> <!-- IF report.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> <br />

  3. Trouver (vers ligne 94) :
    Code: Tout sélectionner
    						<span>{L_REPORTED} {L_POST_BY_AUTHOR} {report.REPORTER_FULL} {L_REPORTED_ON_DATE} <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br />

    Remplacer par :
    Code: Tout sélectionner
    						<span>{L_REPORTED} {L_POST_BY_AUTHOR} {report.REPORTER_FULL} {L_REPORTED_ON_DATE} <br />

  4. Trouver (vers ligne 132) :
    Code: Tout sélectionner
    							<a href="{pm_report.U_PM_DETAILS}" class="topictitle">{pm_report.PM_SUBJECT}</a> <i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <br />

    Remplacer par :
    Code: Tout sélectionner
    							<a href="{pm_report.U_PM_DETAILS}" class="topictitle">{pm_report.PM_SUBJECT}</a> <!-- IF pm_report.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> <br />

template/mcp_post.html

  1. Trouver (vers ligne 294) :
    Code: Tout sélectionner
    			</tbody>
    			</table>
    
    			<table class="table1">

    Remplacer par :
    Code: Tout sélectionner
    			</tbody>
    			</table>
    
    			<div class="pagination">
    				<!-- INCLUDE pagination.html -->
    			</div>
    			</div>
    		</div>
    
    		<div class="panel">
    			<div class="inner">
    			<table class="table1">

  2. Trouver (vers ligne 315) :
    Code: Tout sélectionner
    			</tbody>
    			</table>
    
    			<p><a href="{U_LOOKUP_ALL}#ip">{L_LOOKUP_ALL}</a></p>

    Remplacer par :
    Code: Tout sélectionner
    			</tbody>
    			</table>
    
    			<div class="buttons">
    				<p><a href="{U_LOOKUP_ALL}#ip">{L_LOOKUP_ALL}</a></p>
    			</div>
    
    			<div class="pagination">
    				<ul>
    				<!-- BEGIN pagination_ips -->
    					<!-- IF pagination_ips.S_IS_PREV -->
    					<li class="arrow previous"><a class="button button-icon-only" href="{pagination_ips.PAGE_URL}" rel="prev" role="button"><i class="icon fa-chevron-{S_CONTENT_FLOW_BEGIN} fa-fw" aria-hidden="true"></i><span class="sr-only">{L_PREVIOUS}</span></a></li>
    					<!-- ELSEIF pagination_ips.S_IS_CURRENT -->
    					<li class="active"><span>{pagination_ips.PAGE_NUMBER}</span></li>
    					<!-- ELSEIF pagination_ips.S_IS_ELLIPSIS -->
    					<li class="ellipsis" role="separator"><span>{L_ELLIPSIS}</span></li>
    					<!-- ELSEIF pagination_ips.S_IS_NEXT -->
    					<li class="arrow next"><a class="button button-icon-only" href="{pagination_ips.PAGE_URL}" rel="next" role="button"><i class="icon fa-chevron-{S_CONTENT_FLOW_END} fa-fw" aria-hidden="true"></i><span class="sr-only">{L_NEXT}</span></a></li>
    					<!-- ELSE -->
    					<li><a class="button" href="{pagination_ips.PAGE_URL}" role="button">{pagination_ips.PAGE_NUMBER}</a></li>
    					<!-- ENDIF -->
    				<!-- END pagination_ips -->
    				</ul>
    			</div>

template/mcp_topic.html

  1. Trouver (vers ligne 114) :
    Code: Tout sélectionner
    				<h3><a href="{postrow.U_POST_DETAILS}">{postrow.POST_SUBJECT}</a></h3>
    
    				<!-- EVENT mcp_topic_postrow_post_details_before -->

    Remplacer par :
    Code: Tout sélectionner
    				<!-- EVENT mcp_topic_postrow_post_subject_before -->
     				<h3><a href="{postrow.U_POST_DETAILS}">{postrow.POST_SUBJECT}</a></h3>
    				<!-- EVENT mcp_topic_postrow_post_subject_after -->
     
    				<!-- EVENT mcp_topic_postrow_post_details_before -->

template/overall_footer.html

  1. Trouver (vers ligne 76) :
    Code: Tout sélectionner
    				"content": {
    					"message": "{LA_COOKIE_CONSENT_MSG}",
    					"dismiss": "{LA_COOKIE_CONSENT_OK}",
    					"link": "{LA_COOKIE_CONSENT_INFO}"
    				}

    Remplacer par :
    Code: Tout sélectionner
     				"content": {
     					"message": "{LA_COOKIE_CONSENT_MSG}",
     					"dismiss": "{LA_COOKIE_CONSENT_OK}",
    					"link": "{LA_COOKIE_CONSENT_INFO}",
    					"href": "{LA_COOKIE_CONSENT_HREF}"
    				}

template/overall_header.html

  1. Trouver (vers ligne 36) :
    Code: Tout sélectionner
    			families: ['Open+Sans:600:cyrillic-ext,latin,greek-ext,greek,vietnamese,latin-ext,cyrillic']

    Remplacer par :
    Code: Tout sélectionner
    			families: ['Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese']

template/pagination.html

  1. Trouver (vers ligne 19) :
    Code: Tout sélectionner
    		<li class="arrow previous"><a class="button button-icon-only" href="{pagination.PAGE_URL}" rel="prev" role="button"><i class="icon fa-chevron-left fa-fw" aria-hidden="true"></i><span class="sr-only">{L_PREVIOUS}</span></a></li>

    Remplacer par :
    Code: Tout sélectionner
    		<li class="arrow previous"><a class="button button-icon-only" href="{pagination.PAGE_URL}" rel="prev" role="button"><i class="icon fa-chevron-{S_CONTENT_FLOW_BEGIN} fa-fw" aria-hidden="true"></i><span class="sr-only">{L_PREVIOUS}</span></a></li>

  2. Trouver (vers ligne 25) :
    Code: Tout sélectionner
    		<li class="arrow next"><a class="button button-icon-only" href="{pagination.PAGE_URL}" rel="next" role="button"><i class="icon fa-chevron-right fa-fw" aria-hidden="true"></i><span class="sr-only">{L_NEXT}</span></a></li>

    Remplacer par :
    Code: Tout sélectionner
    		<li class="arrow next"><a class="button button-icon-only" href="{pagination.PAGE_URL}" rel="next" role="button"><i class="icon fa-chevron-{S_CONTENT_FLOW_END} fa-fw" aria-hidden="true"></i><span class="sr-only">{L_NEXT}</span></a></li>

template/search_results.html

  1. Trouver (vers ligne 81) :
    Code: Tout sélectionner
    					<dt<!-- IF searchresults.TOPIC_ICON_IMG and S_TOPIC_ICONS --> style="background-image: url({T_ICONS_PATH}{searchresults.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{searchresults.TOPIC_FOLDER_IMG_ALT}">

    Remplacer par :
    Code: Tout sélectionner
    					<dt<!-- IF searchresults.TOPIC_ICON_IMG --> style="background-image: url({T_ICONS_PATH}{searchresults.TOPIC_ICON_IMG}); background-repeat: no-repeat;"<!-- ENDIF --> title="{searchresults.TOPIC_FOLDER_IMG_ALT}">

  2. Trouver (vers ligne 108) :
    Code: Tout sélectionner
    															<!-- IF not S_IS_BOT -->
    								<div class="responsive-show" style="display: none;">
    									{L_LAST_POST} {L_POST_BY_AUTHOR} {searchresults.LAST_POST_AUTHOR_FULL} &laquo; <a href="{searchresults.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{searchresults.LAST_POST_TIME}</a>
    									<br />{L_POSTED} {L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a>
    								</div>

    Ajouter avant :
    Code: Tout sélectionner
     							<!-- EVENT topiclist_row_topic_title_after -->
    

  3. Trouver (vers ligne 135) :
    Code: Tout sélectionner
    							</div>
    							<!-- ENDIF -->
    							<!-- EVENT topiclist_row_topic_title_after -->

    Remplacer par :
    Code: Tout sélectionner
    							</div>
    							<!-- ENDIF -->

  4. Trouver (vers ligne 186) :
    Code: Tout sélectionner
    			<dd>{L_FORUM}{L_COLON} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a></dd>
    			<dd>{L_TOPIC}{L_COLON} <a href="{searchresults.U_VIEW_TOPIC}">{searchresults.TOPIC_TITLE}</a></dd>
    			<dd>{L_REPLIES}{L_COLON} <strong>{searchresults.TOPIC_REPLIES}</strong></dd>
    			<dd>{L_VIEWS}{L_COLON} <strong>{searchresults.TOPIC_VIEWS}</strong></dd>

    Remplacer par :
    Code: Tout sélectionner
     			<dd class="search-result-date">{searchresults.POST_DATE}</dd>
     			<dd>{L_FORUM}{L_COLON} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a></dd>
     			<dd>{L_TOPIC}{L_COLON} <a href="{searchresults.U_VIEW_TOPIC}">{searchresults.TOPIC_TITLE}</a></dd>
    			<!-- EVENT search_results_topic_title_after -->
     			<dd>{L_REPLIES}{L_COLON} <strong>{searchresults.TOPIC_REPLIES}</strong></dd>
    <dd>{L_VIEWS}{L_COLON} <strong>{searchresults.TOPIC_VIEWS}</strong></dd>

template/simple_header.html

  1. Trouver (vers ligne 14) :
    Code: Tout sélectionner
    			families: ['Open+Sans:600:cyrillic-ext,latin,greek-ext,greek,vietnamese,latin-ext,cyrillic']

    Remplacer par :
    Code: Tout sélectionner
    			families: ['Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese']

template/ucp_pm_viewmessage.html

  1. Trouver (vers ligne 18) :
    Code: Tout sélectionner
    				<i class="icon fa-angle-{S_CONTENT_FLOW_BEGIN} fa-fw icon-black" aria-hidden="true"></i><span>{L_VIEW_NEXT_HISTORY}</span>

    Remplacer par :
    Code: Tout sélectionner
    				<i class="icon fa-angle-{S_CONTENT_FLOW_END} fa-fw icon-black" aria-hidden="true"></i><span>{L_VIEW_NEXT_HISTORY}</span>

  2. Trouver (vers ligne 182) :
    Code: Tout sélectionner
    			<i class="icon fa-angle-{S_CONTENT_FLOW_BEGIN} fa-fw icon-black" aria-hidden="true"></i><span>{L_VIEW_NEXT_PM}</span>

    Remplacer par :
    Code: Tout sélectionner
    			<i class="icon fa-angle-{S_CONTENT_FLOW_END} fa-fw icon-black" aria-hidden="true"></i><span>{L_VIEW_NEXT_PM}</span>

template/viewforum_body.html

  1. Trouver (vers ligne 192) :
    Code: Tout sélectionner
    						<!-- IF topicrow.REPLIES --><span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span><!-- ENDIF -->

    Remplacer par :
    Code: Tout sélectionner
    						<!-- IF topicrow.REPLIES -->
    							<span class="responsive-show" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span>
    							<!-- ENDIF -->
    

  2. Trouver (vers ligne 290) :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_ONLINE_LIST -->
    	<div class="stat-block online-list">
    		<h3><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a><!-- ELSE -->{L_WHO_IS_ONLINE}<!-- ENDIF --></h3>
    

    Remplacer par :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_ONLINE_LIST and U_VIEWONLINE -->
     	<div class="stat-block online-list">
    		<h3><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h3>
    

template/viewtopic_body.html

  1. Trouver (vers ligne 442) :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_ONLINE_LIST -->
    	<div class="stat-block online-list">
    		<h3><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a><!-- ELSE -->{L_WHO_IS_ONLINE}<!-- ENDIF --></h3>
    

    Remplacer par :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_ONLINE_LIST and U_VIEWONLINE -->
     	<div class="stat-block online-list">
    		<h3><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h3>
    

theme/bidi.css

  1. Trouver (vers ligne 16) :
    Code: Tout sélectionner
    .rtl div.rules ul {
    	margin-left: 0;
    	margin-right: 20px;
    }

    Ajouter avant :
    Code: Tout sélectionner
    .rtl p.jumpbox-return {
    	float: right;
    }
    

  2. Trouver (vers ligne 117) :
    Code: Tout sélectionner
    .rtl .dropdown-extended .header .header_settings, .rtl .dropdown-container-right {
    	float: left;
    }

    Ajouter après :
    Code: Tout sélectionner
    .rtl .jumpbox .dropdown-contents a {
    	margin-right: 0;
    	margin-left: 20px;
    }
    

  3. Trouver et supprimer (vers ligne 264) :
    Code: Tout sélectionner
    .rtl .topic-poster {
    	float: right;
    	padding-left: 0.5em;
    }

  4. Trouver (vers ligne 498) :
    Code: Tout sélectionner
    .rtl blockquote {
    	margin: 0.5em 25px 0 1px;
    	background-position: 99% 8px;
    }

    Remplacer par :
    Code: Tout sélectionner
    .rtl blockquote {
    	margin: 0.5em 25px 0 1px;
    }

  5. Trouver (vers ligne 508) :
    Code: Tout sélectionner
    .rtl blockquote cite {
    	/* Username/source of quoter */
    	margin-right: 20px;
    	margin-left: 0;
    }

    Remplacer par :
    Code: Tout sélectionner
    .rtl blockquote cite {
    	/* Username/source of quoter */
    	margin-left: 0;
    }
    
    .rtl blockquote cite:before, .rtl .uncited:before {
    	padding-left: 5px;
    }

  6. Trouver (vers ligne 602) :
    Code: Tout sélectionner
    .rtl .caret {
    	float: right;
    }
    
    
    
    /* Post control buttons

    Remplacer par :
    Code: Tout sélectionner
    .rtl .caret {
    	border-right: 1px solid;
    	border-right-color: inherit;
    	border-left: none;
    	right: 6px;
    }
    
    /* Post control buttons

  7. Trouver (vers ligne 922) :
    Code: Tout sélectionner
    .button-search-end {
    	border-left-width: 1px;
    	border-right-width: 0;
    }

    Remplacer par :
    Code: Tout sélectionner
    .rtl .button-search-end {
    	border-radius: 4px 0 0 4px;
    	border-left-width: 1px;
    	border-right-width: 0;
    }

theme/colours.css

  1. Trouver (vers ligne 410) :
    Code: Tout sélectionner
    blockquote {
    	background-color: #EBEADD;
    	background-image: url("./images/quote.gif");
    	border-color:#DBDBCE;
    }

    Supprimer :
    Code: Tout sélectionner
    	background-image: url("./images/quote.gif");

  2. Trouver et supprimer (vers ligne 416) :
    Code: Tout sélectionner
    .rtl blockquote {
    	background-image: url("./images/quote_rtl.gif");
    }
    

  3. Trouver et supprimer (vers ligne 443) :
    Code: Tout sélectionner
    .syntaxbg		{ color: #FFFFFF; }
    .syntaxcomment	{ color: #FF8000; }
    .syntaxdefault	{ color: #0000BB; }
    .syntaxhtml		{ color: #000000; }
    .syntaxkeyword	{ color: #007700; }
    .syntaxstring	{ color: #DD0000; }
    

theme/common.css

  1. Trouver (vers ligne 96) :
    Code: Tout sélectionner
    b, strong {
    	font-weight: bold;
    }

    Ajouter après :
    Code: Tout sélectionner
    .text-strong {
    	font-weight: bold;
    }
    

  2. Trouver (vers ligne 100) :
    Code: Tout sélectionner
    i, em {
    	font-style: italic;
    }

    Ajouter après :
    Code: Tout sélectionner
    .text-italics {
    	font-style: italic;
    }
    

  3. Trouver (vers ligne 879) :
    Code: Tout sélectionner
    .row .pagination {
    	display: block;
    	margin-top: 0.3em;
    }

    Remplacer par :
    Code: Tout sélectionner
    .row .pagination {
    	display: block;
    	margin-top: -12px;
    }
    

  4. Trouver et supprimer (vers ligne 894) :
    Code: Tout sélectionner
    .topic-poster {
    	float: left;
    	padding-right: 0.5em;
    	margin-top: 0.3em;
    }
    

  5. Trouver (vers ligne 1251) :
    Code: Tout sélectionner
    .linklist.compact .rightside > a > span span {
    	display: none;
    }

    Remplacer par :
    Code: Tout sélectionner
    .linklist.compact .rightside > a > span {
    	display: none;
    }
    

theme/content.css

  1. Trouver (vers ligne 134) :
    Code: Tout sélectionner
    dl.row-item {
    	background-position: 10px 50%;		/* Position of folder icon */
    	background-repeat: no-repeat;
    }
    
    dl.row-item dt {
    	background-repeat: no-repeat;
    	background-position: 5px 95%;		/* Position of topic icon */
    }
    
    dl.row-item dt .list-inner {
    	padding-left: 45px;					/* Space for folder icon */
    }

    Remplacer par :
    Code: Tout sélectionner
    dl.row-item {
    	background-position: 10px 50%;		/* Position of folder icon */
    	background-repeat: no-repeat;
    	background-size: 32px;
    }
    
    dl.row-item dt {
    	background-repeat: no-repeat;
    	background-position: 5px 95%;		/* Position of topic icon */
    	background-size: 17px;
    }
    
    dl.row-item dt .list-inner {
    	padding-left: 52px;					/* Space for folder icon */
    }
    

  2. Trouver (vers ligne 449) :
    Code: Tout sélectionner
    blockquote {
    	background: transparent none 6px 8px no-repeat;
    	border: 1px solid transparent;
    	font-size: 0.95em;
    	margin: 1em 1px 1em 25px;
    	overflow: hidden;
    	padding: 5px;
    }

    Remplacer par :
    Code: Tout sélectionner
    blockquote {
    	border: 1px solid transparent;
    	font-size: 0.95em;
    	margin: 1em 1px 1em 25px;
    	overflow: hidden;
    	padding: 5px;
    }
    

  3. Trouver (vers ligne 463) :
    Code: Tout sélectionner
    blockquote cite {
    	/* Username/source of quoter */
    	font-style: normal;
    	font-weight: bold;
    	margin-left: 20px;
    	display: block;
    	font-size: 0.9em;
    }

    Remplacer par :
    Code: Tout sélectionner
    blockquote cite {
    	/* Username/source of quoter */
    	font-style: normal;
    	font-weight: bold;
    	display: block;
    	font-size: 0.9em;
    }
    

  4. Trouver (vers ligne 476) :
    Code: Tout sélectionner
    blockquote.uncited {
    	padding-top: 25px;
    }
    

    Remplacer par
    Code: Tout sélectionner
    blockquote cite:before, .uncited:before {
    	padding-right: 5px;
    }

  5. Trouver (vers ligne 491) :
    Code: Tout sélectionner
    .codebox {
    	padding: 3px;
    	border: 1px solid transparent;
    	font-size: 1em;
    	margin: 1em 0 1.2em 0;
    }
    
    .codebox p {
    	text-transform: uppercase;
    	border-bottom: 1px solid transparent;
    	margin-bottom: 3px;
    	font-size: 0.8em !important;
    	font-weight: bold;
    	display: block;
    }

    Remplacer par :
    Code: Tout sélectionner
    .codebox {
    	border: 1px solid transparent;
    	font-size: 1em;
    	margin: 1em 0 1.2em 0;
    	word-wrap: normal;
    }
    
    .codebox p {
    	text-transform: uppercase;
    	border-bottom: 1px solid transparent;
    	margin-bottom: 0;
    	padding: 3px;
    	font-size: 0.8em !important;
    	font-weight: bold;
    	display: block;
    }
    

  6. Trouver (vers ligne 511) :
    Code: Tout sélectionner
    .codebox code {
    	overflow: auto;
    	display: block;
    	height: auto;
    	max-height: 200px;
    	padding-top: 5px;
    	font: 0.9em Monaco, "Andale Mono","Courier New", Courier, monospace;
    	line-height: 1.3em;
    	margin: 2px 0;
    }

    Remplacer par :
    Code: Tout sélectionner
    .codebox code {
    	overflow: auto;
    	display: block;
    	height: auto;
    	max-height: 200px;
    	padding: 5px 3px;
    	font: 0.9em Monaco, "Andale Mono","Courier New", Courier, monospace;
    	line-height: 1.3em;
    }
    

theme/forms.css

  1. Trouver (vers ligne 260) :
    Code: Tout sélectionner
    .message-box textarea {
    	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
    	width: 450px;
    	height: 270px;
    	min-width: 100%;
    	max-width: 100%;
    	font-size: 1.2em;
    	resize: vertical;
    	outline: 3px dashed transparent;
    	outline-offset: -4px;
    	-webkit-transition: all .5s ease;
    	-moz-transition: all .5s ease;
    	-ms-transition: all .5s ease;
    	-o-transition: all .5s ease;
    	transition: all .5s ease;
    }

    Remplacer par :
    Code: Tout sélectionner
    .message-box textarea {
    	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
    	width: 450px;
    	height: 270px;
    	min-width: 100%;
    	max-width: 100%;
    	font-size: 1.2em;
    	resize: vertical;
    	outline: 3px dashed transparent;
    	outline-offset: -4px;
    	-webkit-transition: all .5s ease, height 1ms linear;
    	-moz-transition: all .5s ease, height 1ms linear;
    	-ms-transition: all .5s ease, height 1ms linear;
    	-o-transition: all .5s ease, height 1ms linear;
    	transition: all .5s ease, height 1ms linear;
    }

  2. Trouver (vers ligne 312) :
    Code: Tout sélectionner
    input[type="number"] {
    	-moz-padding-end: inherit;
    }

    Remplacer par :
    Code: Tout sélectionner
    input[type="number"] {
    	-moz-padding-end: 0;
    }

theme/icons.css

  1. Trouver (vers ligne 12) :
    Code: Tout sélectionner
    .icon, .button .icon  {

    Remplacer par :
    Code: Tout sélectionner
    .icon, .button .icon, blockquote cite:before, .uncited:before {

  2. Trouver (vers ligne 57) :
    Code: Tout sélectionner
    .arrow-left:hover .icon {
    	margin-left: -5px;
    	margin-right: 5px;
    }

    Ajouter avant :
    Code: Tout sélectionner
    .arrow-left .icon {
    	float: left;
    }
    
    

  3. Trouver (vers ligne 76) :
    Code: Tout sélectionner
    .alert_close .icon:before {
    	padding: 0;
    	border-radius: 50%;
    	width: 11px;
    	display: block;
    	line-height: .9;
    	height: 12px;
    }

    Ajouter après :
    Code: Tout sélectionner
    blockquote cite:before, .uncited:before {
    	content: '\f10d'; /* Font Awesome quote-left */
    }
    
    .rtl blockquote cite:before, .rtl .uncited:before {
    	content: '\f10e'; /* Font Awesome quote-right */
    }
    
    

theme/links.css

  1. Trouver (vers ligne 88) :
    Code: Tout sélectionner
    a.lastsubject:hover {
    	text-decoration: underline;
    }

    Ajouter après :
    Code: Tout sélectionner
    .row-item a:hover {
    	text-decoration: none
    }
    
    .row-item .topictitle:hover,
    .row-item .subforum:hover,
    .row-item .username:hover,
    .row-item .username-coloured:hover {
    	text-decoration: underline;
    }
    
    

theme/print.css

  1. Trouver (vers ligne 139) :
    Code: Tout sélectionner
    .codebox p { display: none; }

    Ajouter après :
    Code: Tout sélectionner
    /* stylelint-disable declaration-property-unit-whitelist */
    .emoji {
    	min-height: 18px;
    	min-width: 18px;
    	height: 1em;
    	width: 1em;
    }
    /* stylelint-enable declaration-property-unit-whitelist */
    

theme/responsive.css

  1. Trouver et supprimer (vers ligne 283) :
    Code: Tout sélectionner
    	.row .pagination {
    		margin-top: 2px;
    		margin-bottom: 2px;
    	}

  2. Trouver (vers ligne 572) :
    Code: Tout sélectionner
    @media (min-width: 701px) and (max-width: 950px) {
    	.row .pagination {
    		margin-top: 2px;
    		margin-bottom: 2px;
    	}

    Remplacer par :
    Code: Tout sélectionner
    @media (min-width: 701px) and (max-width: 950px) {

  3. Trouver (vers ligne 586) :
    Code: Tout sélectionner
    	dd.posts, dd.topics, dd.views {
        	width: 80px;
    	}
    }
    

    Ajouter après :
    Code: Tout sélectionner
    @media (max-width: 992px) {
    	.row .pagination {
    		text-align: left;
    		float: left;
    		margin-top: 4px;
    		margin-bottom: 4px;
    	}
    }

theme/stylesheet.css

  1. Trouver et supprimer (vers ligne 3) :
    Code: Tout sélectionner
    	Style name:			prosilver (the default phpBB 3.1.x style)

    Remplacer par :
    Code: Tout sélectionner
    	Style name:			prosilver (the default phpBB 3.2.x style)

  2. Trouver et supprimer (vers ligne 10) :
    Code: Tout sélectionner
    @import url("normalize.css");
    @import url("base.css");
    @import url("utilities.css");
    @import url("common.css");
    @import url("links.css");
    @import url("content.css");
    @import url("buttons.css");
    @import url("cp.css");
    @import url("forms.css");
    @import url("icons.css");
    @import url("colours.css");
    @import url("responsive.css");

    Remplacer par :
    Code: Tout sélectionner
    @import url("normalize.css?v=3.2");
    @import url("base.css?v=3.2");
    @import url("utilities.css?v=3.2");
    @import url("common.css?v=3.2");
    @import url("links.css?v=3.2");
    @import url("content.css?v=3.2");
    @import url("buttons.css?v=3.2");
    @import url("cp.css?v=3.2");
    @import url("forms.css?v=3.2");
    @import url("icons.css?v=3.2");
    @import url("colours.css?v=3.2");
    @import url("responsive.css?v=3.2");

style.cfg

  1. Trouver (vers ligne 24) :
    Code: Tout sélectionner
    style_version = 3.2.0
    phpbb_version = 3.2.0

    Remplacer par :
    Code: Tout sélectionner
    style_version = 3.2.1
    phpbb_version = 3.2.1
Avatar de l’utilisateur
Mazeltof
Resp. des graphistes
Resp. des graphistes
 
Rédigé le: 21 Juil 2017 à 16:19
Articles: 21
Noter cet article: 123456 Votants: 1

Retourner vers Mise à jour


cron