Gamepedia帮助Wiki
Advertisement
Skincostumization



注意!
GP Nova ♦ 要想自訂wiki外觀,您必須擁有 層疊樣式表(CSS)的相關知識,如果你不了解CSS,我們建議你請求員工的幫助。另外,你可以在修改本站樣式前用自己的個人樣式表進行測試。


♦ 你必須擁有 editinterface 權限才可以修改本站樣式,一般管理員擁有這個權限。如果你沒有這個權限,可以先在個人樣式表進行測試,然後尋求擁有權限的人把你個人css頁面的內容加入到本站css頁面。

♦ 另外,我們針對wiki的外觀和排版有一些硬性規定,詳情請參閱 Wiki自訂條款




Hydra外觀 及 手機版外觀[ | ]

The Hydra skin is a separate version of the Vector skin used on Wikipedia. By default, it looks essentially identical to Vector, though it has certain under-the-hood changes that make it more compatible with Gamepedia features. For example, in Hydra, the order of content in the actual HTML is similar to the way it appears on screen, while in Vector, the content in the actual HTML is above elements like the sidebar and page tabs, even though they are rearranged on display. Note that because of these changes and some differences in the styles, customizations that work on Vector may not necessarily work correctly on Hydra. The mobile skin doesn't have any special name other than just mobile; you can see how it looks by either viewing the wiki on a mobile device or clicking the "Mobile view" link at the bottom of any page.

個人樣式表&wiki樣式表[ | ]

Customizing or extending the skin is done through wiki pages that are loaded as stylesheets. The wiki stylesheets are loaded for every user, including anonymous users, but personal stylesheets are loaded only for the user that owns them, and only when logged in. Unless it is still early in your wiki's lifetime, any experimentation should be done on personal stylesheets first when practical. The relevant stylesheets are shown below:

Keep in mind that the links below link to pages here on the help wiki and will only affect styles here. The same page names are used on other Gamepedia wikis, however.

Wiki樣式表 個人樣式表 說明
MediaWiki:Common.css User:使用者名稱/common.css Styles loaded for any skin. In case more skin choices are added later, this should be used only for styles that would be used in any skin except the mobile skin. These would generally only be certain basic layout or display styles like float or display. On some wikis, all of the custom styles used in wiki pages are added here.
MediaWiki:Hydra.css User:使用者名稱/hydra.css Styles loaded for the light-themed Hydra skin only. Most, if not all, of the styles should be added here.
MediaWiki:Hydradark.css User:使用者名稱/hydradark.css Styles loaded for the dark-themed Hydra skin only. Most, if not all, of the styles should be added here.
MediaWiki:Mobile.css User:使用者名稱/mobile.css Styles loaded for the mobile skin. Styles from common.css are not loaded here, so any important styles will have to be duplicated here and possibly adjusted to fit the simpler mobile view.

CSS選擇器[ | ]

The identifiers of many of the page elements found in MediaWiki is on the MediaWiki CSS page. Note that this is not, by any means, a complete list as such a list would be huge, but it includes the identifiers of both elements that generally need to be changed in any customizations as well as those you may wish to change. When adding extensions, especially any that may be new to Gamepedia, you may find that its pages and features have styles that need to be customized. There are also recommends to help guide you as what styles you may need on various elements.

手機版外觀[ | ]

The mobile view of the wiki does not include the left navigation bar. It also does not allow for mobile editing.

When customizing the mobile skin for a wiki, keep in mind that this is for mobile viewing. Not everyone has unlimited data as part of their mobile plan, so keep images as small as possible. Generally speaking no one will be viewing the mobile view at a higher resolution than 1024x768, so having large images scaled small is only wasting their data usage, and will cause slow load times. A basic Mobile CSS template is available. If you'd prefer to start with one already customized, you can also copy this wiki's mobile stylesheet.

The mobile view functionality is provided by the Mobile Frontend extension. More detailed information can be found in its documentation.

手機版主頁[ | ]

id屬性[ | ]

The Mobile Frontend extension automatically strips any content from the wiki's main page that is not tagged with an appropriate ID, so a main page will appear blank without any of these IDs except for the header and footer. Any ID starting with mf- will cause the element with that ID to appear on the mobile view of the main page. For example:

<div id="mf-linksheader">Heading</div>
<div id="mf-links">
*link1
*link2
*etc.
</div>

This example will appear on the mobile page because of the IDs starting with mf-. Without those IDs, you wouldn't see that heading or list of links on the mobile view. Note that IDs should always be unique; for example, you should not use mf-linksheader twice on a page. Using the same ID twice can have unexpected results.

If an block to be included is in a wiki table, you may put the ID attribute (id="mf-...") within the table's attributes spot rather than adding extra DIV tags. See the difference in this example from the history of this wiki's main page: Main Page edit made by Cathadan, 23 Oct 2014 (How not to do it on the left, a better way on the right)

title屬性[ | ]

In some cases, headers aren't present in the original content to clearly denote each section and may look messy when converted to a mobile format. A title attribute may also be added, and it will be inserted as a h2 header on the mobile view for each element so tagged. For example:

{| class="wikitable"
|colspan="2" id="mf-welcome"|<span style="font-weight:bold;font-size:200%">Welcome to my fantastic wiki</span>
|-
|id="mf-description"|
A longer lorem ipsum discreption about the game. To create a page, start search for it and then create it (see the help page for more info). If you are here by mistake, too bad!
|id="mf-links" title="Interesting parts of the wiki"|
* [[Lots]]
* [[Of]]
* [[Miscellaneous]]
* [[Links]]
|}
Mobile Format Screen Shot 2014-10-06 at 16.47

Screenshot of mobile format

On the front page it will render like this:

Welcome to my fantastic wiki

A longer lorem ipsum discreption about the game. To create a page, start search for it and then create it (see the help page for more info). If you are here by mistake, too bad!

And on mobile it will have an extra header to separate the sections.

內聯樣式[ | ]

It is not necessary to tag every element. The focus should be on those elements that do the following:

  1. Define the purpose of the wiki
  2. Provide links to content
  3. Are suitable to quick reading
  4. Will format nicely on a mobile screen

See also: Official MediaWiki main page mobile formatting guide

進階自訂小貼士[ | ]

While the Hydra skin simplifies Vector in some ways, it is still a complex skin using a number of positioning and layout techniques familiar to many web designers and developers, but not necessarily familiar to novices or hobbyists, and sometimes they aren't used in ways you'd expect. It often helps to know what's going on under the hood. Browsers extensions such as Web Developer and Firebug both provide features that can help you find what styles are being applied to specific elements. Browser extensions also often let you edit the CSS in your browser so you can test particularly experimental or difficult changes without having to spam Recent Changes with edits to your personal stylesheets.
Learn more about web development on w3schools.com !

Advertisement