aboutsummaryrefslogtreecommitdiffstats
path: root/skins
Commit message (Collapse)AuthorAgeFilesLines
...
* Localisation updates from https://translatewiki.net.Translation updater bot2014-08-041-0/+2
| | | | Change-Id: I02368e329c1c30add1269663e5c4b2a658dadbbb
* Localisation updates from https://translatewiki.net.Translation updater bot2014-08-031-0/+6
| | | | Change-Id: Ie088cb1ba258e63ae6b78dc6ff7d4c3eb8d59ff8
* Vector: Remove dead @import in screen.lessBartosz Dziewoński2014-08-031-1/+0
| | | | | | | | This file doesn't exist anymore after If248781e, I forgot to remove this line. In a better world this would be throwing an exception instead of just doing nothing and being stupid. Change-Id: If75f0f4c5c0a896a04ab0009665a212051120c37
* Vector: Fix missing tab images on Special:PreferencesBartosz Dziewoński2014-08-031-3/+3
| | | | | | | | | | This fixes an issue in vector when you go to special preference the images would not load. That is because you needed to add ../ to the file path. This follows up If248781e44300039eb52262d03b2f6722838dd12 Change-Id: Iee3303eb1288ad5fc9e5a39e4854774a6da375ff
* Localisation updates from https://translatewiki.net.Translation updater bot2014-08-011-3/+4
| | | | Change-Id: I2965067cc40170a93f0a2368ce22aab5eef83295
* Revert "Update jquery.ui Vector theme to 1.9.2"MarkTraceur2014-07-2919-121/+166
| | | | | | | | This change messed up jquery.ui.button styling on Commons, so we're reverting. This reverts commit 7bb0c9a01eb0266696a9c3989572ae3a5b67bfdd. Change-Id: Ibef35ce9f5a642f89bf70ec891ba1425f678ec1e
* Vector: Make better use of $wgResourceModuleSkinStylesBartosz Dziewoński2014-07-2935-9/+851
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This gets rid of quite a lot of Vector from Resources.php and resources/. * New $wgResourceModuleSkinStyles entries: * jquery.tipsy: Split off skins/Vector/skinStyles/jquery.tipsy.less from skins/Vector/components/common.less. It's just one rule, but let's do it for consistency anyway. * jquery.ui.*: Converted from Resources.php. Files renamed: resources/src/jquery.ui-themes/vector/** → skins/Vector/skinStyles/jquery.ui/** * mediawiki.notification: Still has the specificity hack, just renamed skins/Vector/components/notifications.less → skins/Vector/skinStyles/mediawiki.notification.less * Updated $wgResourceModuleSkinStyles entries: * mediawiki.special: Renamed file for consistency, skins/Vector/special.less → skins/Vector/skinStyles/mediawiki.special.less * mediawiki.special.preferences: Renamed file for consistency, skins/Vector/special.preferences.less → skins/Vector/skinStyles/mediawiki.special.preferences.less Change-Id: If248781e44300039eb52262d03b2f6722838dd12
* resourceloader: Allow skins to provide additional styles for any moduleBartosz Dziewoński2014-07-291-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The newly introduced $wgResourceModuleSkinStyles global enables skins to provide additional stylesheets to existing ResourceLoader module. This both makes it easier (or at all possible) to override default styles and lowers the style footprint by making it possible not to load styles unused on most pages. ---- Example: Use the file 'foo-styles.css' for the 'mediawiki.foo' module when using the MySkin skin: $wgResourceModuleSkinStyles['myskin'] = array( 'mediawiki.foo' => 'foo-styles.css', 'remoteSkinPath' => 'MySkin', 'localBasePath' => __DIR__, ); For detailed documentation, see the doc comment in DefaultSettings.php. For a practical usage example, see Vector.php. ---- Implementation notes: * The values defined in $wgResourceModuleSkinStyles are embedded into the modules as late as possible (in ResourceLoader::register()). * Only plain file modules are supported, setting module skin styles for other module types has no effect. * ResourceLoader and ResourceLoaderFileModule now support loading files from arbitrary paths to make this possible, defined using ResourceLoaderFilePath objects. * This required some adjustments in seemingly unrelated places for code which didn't handle the paths fully correctly before. * ResourceLoader and ResourceLoaderFileModule are now a bit more tightly coupled than before :( * Included a tiny example change for the Vector skin, a lot more of similar cleanup is possible and planned for the future. * Many of the non-essential mediawiki.* modules defined in Resources.php should be using `'skinStyles' => array( 'default' => … )` instead of `'styles' => …` to allow more customizations, this is also planned for the future after auditing which ones would actually benefit from this. Change-Id: Ica4ff9696b490e35f60288d7ce1295766c427e87
* Localisation updates from https://translatewiki.net.Translation updater bot2014-07-272-0/+19
| | | | Change-Id: Ifc90dcf97a19e99a99e42ccd5ea10404ce75d083
* Localisation updates from https://translatewiki.net.Translation updater bot2014-07-253-3/+15
| | | | Change-Id: If3d3fe97968e04fde8df4a05a35c9d2ba08f59ae
* Localisation updates from https://translatewiki.net.Translation updater bot2014-07-242-1/+4
| | | | Change-Id: I348abe6cee1468682f71e2fe9137304c8c61dcd1
* Break some long lines in maintenance, skins, testsumherirrender2014-07-241-1/+3
| | | | Change-Id: I5d86ad3e0c90e09440268a670f5af3e2bf080612
* Merge "commonElements: Import styling for <code> from mediawiki.org"jenkins-bot2014-07-241-2/+6
|\
| * commonElements: Import styling for <code> from mediawiki.orgBartosz Dziewoński2014-07-221-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Same theme as the styling for <pre> we already have (which also has been imported from mediawiki.org, in Iea359250). Source: https://www.mediawiki.org/w/index.php?title=MediaWiki:Gadget-site.css&oldid=1057697 > Redesigned <code>. > Should improve readability by not having the samples blend into the white background, > but by having a visible (though subtle) border around the code sample. Originally authored by Krinkle: https://www.mediawiki.org/w/index.php?title=MediaWiki:Gadget-site.css&diff=655396&oldid=648042 Change-Id: I48185e17a37e5c11b285e9a44176b47d59644bcd
* | Merge "Remove styles for .os-suggest and related classes"jenkins-bot2014-07-232-59/+0
|\ \
| * | Remove styles for .os-suggest and related classesBartosz Dziewoński2014-07-222-59/+0
| | | | | | | | | | | | | | | | | | | | | | | | These styled the old OpenSearch AJAX suggestions module, which was removed and replaced by mediawiki.searchSuggest (which uses completely different classes) several versions ago. Change-Id: I24a4bf879c3402bca789391189bfab0871b7e9fa
* | | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-231-2/+4
| |/ |/| | | | | Change-Id: I875fda4c74419c916f9c992c885234613c39272b
* | Remove <div id="mw-js-message"> (again)Bartosz Dziewoński2014-07-211-1/+0
| | | | | | | | | | | | | | It has been previously removed in d4d519c4, then accidentally readded in a96afeb2. Change-Id: I23d228bf05ad8c632da38c4a194981044af6cc6b
* | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-211-1/+2
| | | | | | | | Change-Id: I2dd8d41e3ea4e38a4afd4dd6f59ddab83cb81edd
* | Stop using a suboptimal structure for Vector's variants menuBartosz Dziewoński2014-07-212-18/+13
|/ | | | | | | | | | | | | One label is enough. We need to keep the styles and some inline hacks in the HTML for a while to keep current CSS compatible with old HTML, which is cached in WMF environment for up to 30 days. Follow-up to clean up the mess: I2817c6e9eb52ffc785a04bb9d23b0802a553fd45. Bug: 43406 Change-Id: Idf43d77dccff83ad81db776f3262e0ef12d25c92
* Merge "Support for enabling skins in the installer"jenkins-bot2014-07-211-0/+16
|\
| * Support for enabling skins in the installerBartosz Dziewoński2014-07-201-0/+16
| | | | | | | | | | | | | | | | | | | | | | Let the user choose the skins to install (like extensions) and decide which one will be the default for the new wiki. Right now core skins are always enabled regardless of user choices there, but I'm working on that. Bug: 66440 Change-Id: I2e10720a6ac327e66c415bb91dc897885f952738
* | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-204-2/+16
|/ | | | Change-Id: If486a0d92a03060d51bd38129b42f00194339ac9
* Fixed spacingumherirrender2014-07-191-1/+1
| | | | | | | | - Added/removed spaces around parenthesis - Added space after switch/if/foreach - changed else if to elseif Change-Id: I99cda543e0e077320091addd75c188cb6e3a42c2
* Localisation updates from https://translatewiki.net.Translation updater bot2014-07-192-1/+3
| | | | Change-Id: Ie56bee3e7090bc844996d228736a938478e86929
* Localisation updates from https://translatewiki.net.Translation updater bot2014-07-185-5/+14
| | | | Change-Id: Iea9d17b3dfd8f354c9cb51eb4bab2edd369ef28c
* Merge "Migrate 'wgBreakFrames' from wikibits.js to mediawiki.page.ready"jenkins-bot2014-07-181-9/+0
|\
| * Migrate 'wgBreakFrames' from wikibits.js to mediawiki.page.readyumherirrender2014-07-141-9/+0
| | | | | | | | | | | | | | | | | | | | This module now contains the same code as in wikibits.js. For cached entries the new code works automatically since both legacy wikibits and mediawiki.page.ready are already present in the load() queue of existing pages. Change-Id: I18b068fbcf4ba0646fb07313c3d9676cc76a0ad5
* | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-152-1/+4
| | | | | | | | Change-Id: If9a0f2e33272075d5bc35923357c9347933bb4f7
* | Merge "Add link on Special:Upload to edit MediaWiki:Licenses"jenkins-bot2014-07-151-2/+6
|\ \
| * | Add link on Special:Upload to edit MediaWiki:Licensesrobin2014-06-281-2/+6
| | | | | | | | | | | | | | | | | | | | | Add a link below the licenses selector to edit those license options (if allowed to), similar to links on the block, delete and protect forms. Change-Id: Iff11d114cb1bfbc2c17de44369c482cee846ed9d
* | | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-144-3/+6
| |/ |/| | | | | Change-Id: I482feffd1fb7bdde774d146304d9efe63a833aaa
* | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-133-2/+5
| | | | | | | | Change-Id: Ibc7305f1089f5d69fe455cffadc602c1b894239c
* | Vector: Use .mediawiki instead of .skin-vector in notification stylesDaniel Friesen2014-07-131-1/+4
| | | | | | | | | | | | | | | | | | | | | | What was I thinking when I did this in I2b3d9cbc? The extra class is present as mediawiki.notification's css is loaded later thus overriding the skin's css. However using .skin-vector for that purpose breaks Vector derived skins since they don't have it. The .mediawiki class is always present so it should be an acceptable weight. Change-Id: Ica2a3d3a2ef25aabb38fac36e9eaf142c8bbd388
* | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-124-2/+8
| | | | | | | | Change-Id: Ibf985c7870387ab6f7b47e626732edb359d2b9bb
* | Merge "Remove outdated unused jquery.tipsy styles from common/shared.css"jenkins-bot2014-07-102-31/+0
|\ \
| * | Remove outdated unused jquery.tipsy styles from common/shared.cssThiemo Mättig2014-07-102-31/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This code is really, really old and not compatible with jquery.tipsy anymore. Look at the image. It's a single arrow. That's not how the tipsy version we are currently using works. It needs to be a star with arrows pointing to all four directions. Luckily this is just dead code. The jquery.tipsy.css file is loaded after shared.css and overrides the outdated styles anyway. Wikibase uses it's own styles for the tipsy tooltips. So there are three places that try to style the tipsy tooltips: shared.css, tipsy.css and Wikibase' wbtooltip.css. For some reason this broke the ULS tooltips on wikidata.org. I would like to fix this mess by removing all individual styles. I will submit an other patch that removes the individual styles in Wikibase. Bug: 67802 Change-Id: Idfd3a5e30dd2f24dbd588a30c1f516d5d219ced5
* | | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-091-0/+1
| | | | | | | | | | | | Change-Id: Ib3532d709f98117b2e23ccfda1a9b74d3db398a2
* | | Vector: Remove backwards-compatible #bodyContent selectorJames D. Forrester2014-07-071-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | The selector for #bodyContent was needed for a period of 31 days after 9c8592fe was deployed (i.e., until 1 June 2014), as cache breakage avoidance from the switch to using .mw-body-content as the selector. Change-Id: Id3e83fa9bc6188627c0e9e2290bf8594bf4298d8
* | | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-064-2/+10
| | | | | | | | | | | | Change-Id: Iafe051ad30f15eaa0379bd8d8c8a7aa2f428e864
* | | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-051-1/+1
| | | | | | | | | | | | Change-Id: I8eb2ba8d20eaf824efeb165acb8a1290bb5c3bf8
* | | Merge "Localisation updates from https://translatewiki.net."Translation updater bot2014-07-041-1/+8
|\ \ \
| * | | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-041-1/+8
| | | | | | | | | | | | | | | | Change-Id: Iadb3673f398ec110d1393cec733d1d5b786e6e86
* | | | Add a file icon for xcf file typeBrian Wolff2014-07-041-0/+0
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This icon comes from the crystal icon set (like all the other icons here). They are licensed LGPL. See the COPYING file in the skins/common/images/icons directory. It was downloaded from https://upload.wikimedia.org/wikipedia/commons/4/4f/Xcf.png This goes along with change I127bcb5458, which caused the icon to be shown for indexed xcf files. Change-Id: I72aa00c4e605ff67f62f855c1475a07433fd4567
* | | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-028-7/+25
| | | | | | | | | | | | Change-Id: Ib189d947865ccc4b15cb617ed5db6045250e3106
* | | Localisation updates from https://translatewiki.net.Translation updater bot2014-07-015-4/+13
| | | | | | | | | | | | Change-Id: I39205dcbe72128c4d2978282309d208f059395fd
* | | Localisation updates from https://translatewiki.net.Translation updater bot2014-06-303-0/+3
|/ / | | | | | | Change-Id: I77bfdae2686c736fbd1b9bd44cfc690d9e4bad13
* | Vector: Remove translations for non-existent message 'vector-desc'Bartosz Dziewoński2014-06-3079-79/+0
| | | | | | | | | | | | | | | | | | | | | | Follow-up to Id7bde76b. It seems that l10n-bot will only remove them if anything else changes in any of the messages (see e.g. change Id40eee57), and this message key is conflicting with the one used by the old Vector extension. Letting it stay here is at best confusing and at worst problematic. Change-Id: I649e305a5eaa019b9afeb4fd9aa1cbe06259db66
* | Localisation updates from https://translatewiki.net.Translation updater bot2014-06-297-6/+18
| | | | | | | | Change-Id: Id40eee5754cd13f0573f841c8ea42cb1ad67d4f4
* | Localisation updates from https://translatewiki.net.Translation updater bot2014-06-2712-16/+20
| | | | | | | | Change-Id: Ib16f36dc258233455cea345f579a98055529c078