mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 17:28:04 +00:00
3a3e7ac046
These are feature flagged to allow editors to test before making them the default. A class is added to the body tag to allow us to switch between old and new styles at a later date. To start with we introduce some typography improvements. Further iterations will focus on other elements. Changes: * headings were previously diluted in the body content and difficult to spot. This evens out the spacing between last content and its own content block. * clear ownership of <p>s with its heading * We would like to match Latex style body typography with single column. The new styles reduce the number of pages by around 20-25% * hyperlink underline - This is a community requested feature. We do not use color in print styles because it's printer friendly. Because of this, it is not possible to indicate blue links in articles. If a user wants to know if this article exists on wikipedia, it's not possible given solution. We would like to underline the <a> tags in print styles. it's better for accessibility as well. Bug: T169823 Change-Id: I453ae43099796a74c39d965b796f2fa13942106c
117 lines
3.4 KiB
JSON
117 lines
3.4 KiB
JSON
{
|
|
"name": "Vector",
|
|
"author": [
|
|
"Trevor Parscal",
|
|
"Roan Kattouw",
|
|
"..."
|
|
],
|
|
"url": "https://www.mediawiki.org/wiki/Skin:Vector",
|
|
"descriptionmsg": "vector-skin-desc",
|
|
"namemsg": "skinname-vector",
|
|
"license-name": "GPL-2.0+",
|
|
"type": "skin",
|
|
"requires": {
|
|
"MediaWiki": ">= 1.29.0"
|
|
},
|
|
"ConfigRegistry": {
|
|
"vector": "GlobalVarConfig::newInstance"
|
|
},
|
|
"ValidSkinNames": {
|
|
"vector": "Vector"
|
|
},
|
|
"MessagesDirs": {
|
|
"Vector": [
|
|
"i18n"
|
|
]
|
|
},
|
|
"AutoloadClasses": {
|
|
"VectorHooks": "Hooks.php",
|
|
"SkinVector": "SkinVector.php",
|
|
"VectorTemplate": "VectorTemplate.php"
|
|
},
|
|
"Hooks": {
|
|
"BeforePageDisplayMobile": [
|
|
"VectorHooks::onBeforePageDisplayMobile"
|
|
]
|
|
},
|
|
"@note": "When modifying skins.vector.styles definition, make sure the installer still works",
|
|
"ResourceModules": {
|
|
"skins.vector.styles": {
|
|
"targets": [ "desktop", "mobile" ],
|
|
"position": "top",
|
|
"styles": {
|
|
"screen.less": {
|
|
"media": "screen"
|
|
},
|
|
"screen-hd.less": {
|
|
"media": "screen and (min-width: 982px)"
|
|
}
|
|
}
|
|
},
|
|
"skins.vector.styles.experimental.print": {
|
|
"targets": [ "desktop", "mobile" ],
|
|
"position": "top",
|
|
"styles": [
|
|
"print.less"
|
|
]
|
|
},
|
|
"skins.vector.styles.responsive": {
|
|
"targets": [ "desktop", "mobile" ],
|
|
"position": "top",
|
|
"styles": [
|
|
"responsive.less"
|
|
]
|
|
},
|
|
"skins.vector.js": {
|
|
"scripts": [
|
|
"collapsibleTabs.js",
|
|
"vector.js"
|
|
],
|
|
"position": "top",
|
|
"dependencies": [
|
|
"jquery.throttle-debounce",
|
|
"jquery.tabIndex"
|
|
]
|
|
}
|
|
},
|
|
"ResourceFileModulePaths": {
|
|
"localBasePath": "",
|
|
"remoteSkinPath": "Vector"
|
|
},
|
|
"ResourceModuleSkinStyles": {
|
|
"vector": {
|
|
"jquery.tipsy": "skinStyles/jquery.tipsy.less",
|
|
"jquery.ui.core": [
|
|
"skinStyles/jquery.ui/jquery.ui.core.css",
|
|
"skinStyles/jquery.ui/jquery.ui.theme.css"
|
|
],
|
|
"jquery.ui.accordion": "skinStyles/jquery.ui/jquery.ui.accordion.css",
|
|
"jquery.ui.autocomplete": "skinStyles/jquery.ui/jquery.ui.autocomplete.css",
|
|
"jquery.ui.button": "skinStyles/jquery.ui/jquery.ui.button.css",
|
|
"jquery.ui.datepicker": "skinStyles/jquery.ui/jquery.ui.datepicker.css",
|
|
"jquery.ui.dialog": "skinStyles/jquery.ui/jquery.ui.dialog.css",
|
|
"jquery.ui.menu": "skinStyles/jquery.ui/jquery.ui.menu.css",
|
|
"jquery.ui.progressbar": "skinStyles/jquery.ui/jquery.ui.progressbar.css",
|
|
"jquery.ui.resizable": "skinStyles/jquery.ui/jquery.ui.resizable.css",
|
|
"jquery.ui.selectable": "skinStyles/jquery.ui/jquery.ui.selectable.css",
|
|
"jquery.ui.slider": "skinStyles/jquery.ui/jquery.ui.slider.css",
|
|
"jquery.ui.spinner": "skinStyles/jquery.ui/jquery.ui.spinner.css",
|
|
"jquery.ui.tabs": "skinStyles/jquery.ui/jquery.ui.tabs.css",
|
|
"jquery.ui.tooltips": "skinStyles/jquery.ui/jquery.ui.tooltips.css",
|
|
"+mediawiki.action.view.redirectPage": "skinStyles/mediawiki.action.view.redirectPage.less",
|
|
"+mediawiki.notification": "skinStyles/mediawiki.notification.less",
|
|
"+oojs-ui-core.styles": "skinStyles/ooui.less",
|
|
"mediawiki.special": "skinStyles/mediawiki.special.less",
|
|
"+mediawiki.special.preferences.styles": "skinStyles/mediawiki.special.preferences.styles.less"
|
|
}
|
|
},
|
|
"config": {
|
|
"VectorUseSimpleSearch": true,
|
|
"VectorUseIconWatch": true,
|
|
"@VectorExperimentalPrintStyles": "Temporary config variable to feature flag new print styles (T154965)",
|
|
"VectorExperimentalPrintStyles": false,
|
|
"VectorResponsive": false
|
|
},
|
|
"manifest_version": 1
|
|
}
|