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