Skin talk:DarkVector
Add topicThe following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
The DarkVector skin fails to preview on MediaWiki 1.25.1. The page is blank when previewing. Noloader (talk) 03:53, 3 July 2016 (UTC) Reply
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
I tried to costomize the Skin to better fit with the rest with a MediaWiki:DarkVector.css-Page, but it doesn't work. Does anyone have an Idea what changes I have to make to get it tow work? 188.102.152.46 (talk) 06:05, 12 February 2017 (UTC) Reply
- I have observed the same problem. A workaround is editing darkvector.less, but this can make upgrades more difficult. Flounder ceo (talk) 05:14, 27 October 2020 (UTC) Reply
- You should edit page with name MediaWiki:Darkvector.css instead of MediaWiki:DarkVector.css Martynov Maxim (talk) 15:06, 13 November 2020 (UTC) Reply
- oh that could explain it. Flounder ceo (talk) 20:03, 13 November 2020 (UTC) Reply
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
I can't find it to download it in the dl page. I like it, and I would be happy to use it, if still maintained. 213.0.87.167 (talk) 10:58, 1 June 2018 (UTC) Reply
- You can download it directly from Github. Martynov Maxim (talk) 21:52, 2 June 2018 (UTC) Reply
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
I tried to add some sentences in MediaWiki:Common.css but not working. Thank for any help! 106.114.67.104 (talk) 05:01, 18 August 2018 (UTC) Reply
- Use Skin:Vector-DarkCSS instead C933103 (talk) 23:09, 12 May 2019 (UTC) Reply
- You can control that in darkvector.less you may want to provide other hex color values in the the a.new, if necessary enforcing them with !important CayceP (talk) 13:19, 7 October 2020 (UTC) Reply
- You lose the default option with Vector-DarkCSS. Flounder ceo (talk) 05:17, 27 October 2020 (UTC) Reply
- You can add lines to MediaWiki:Common.css or to MediaWiki:Darkvector.css, and they will work. This is an internal MW mechanism of page rendering, it does not depend on skin at all:
- Regarding non-working sentences, maybe you should add !important directive to your styles to rewrite default ones. Martynov Maxim (talk) 15:03, 13 November 2020 (UTC) Reply
- The way I change link colors is by editing darkvector.less. I think I once tried the Mediawiki:Darkvector.css method and it didn't work for me.
- If you want to describe which links you want changed and what color you'd like I could take a shot at writing the code for you. Flounder ceo (talk) 20:01, 13 November 2020 (UTC) Reply
- Editing the Mediawiki:Darkvector.css method didn't work for me either, same for Vector-DarkCSS. There have been a lot of chnages to the master branch of the skin recently, so maybe update the Skin files (including darkvector.less) first and then start applying changes to link colour otherwise you may lose them with the next update you do to the skin extension files. CayceP (talk) 12:44, 15 November 2020 (UTC) Reply
- Can you provide a link to MediaWiki:Darkvector.css on your wiki site?
- The main issue of ignoring these custom styles is just wrong page name. It should be exactly MediaWiki.Darkvector.css, not Mediawiki, and not DarkVector.
- Also I didn't get why you're discussing Vector-DarkCSS extension. Only some part of this extension is used in DarkVector, the backend is completely different. These extensions have nothing in common in terms of settings or custom styling. Martynov Maxim (talk) 13:36, 15 November 2020 (UTC) Reply
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
Is there a way to hack it to get rid of these? Thanks. 2601:5CD:C200:9BE0:20DD:6D05:8D38:6E35 (talk) 18:30, 26 March 2020 (UTC) Reply
- I removed it on my wiki by removing the div content in lines 148 to 154 from my DarkVectorTemplate.php:
- <nowiki>
- <nowiki> CayceP (talk) 13:17, 7 October 2020 (UTC) Reply
- It should be fixed in the latest version. Martynov Maxim (talk) 07:57, 20 October 2020 (UTC) Reply
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
I'm very confused that this skin does not display navigation and search :-( 79.240.97.30 (talk) 18:36, 31 March 2021 (UTC) Reply
- Hi.
- What is your MediaWiki version? Martynov Maxim (talk) 21:22, 1 April 2021 (UTC) Reply
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
Hi Everyone,
We recently updated to Mediawiki 1.36. I'm testing some of our installed skins under it.
DarkVector is causing this warning to be printed on the bottom of each page:
Deprecated: Use of BaseTemplate::getFooterIcons was deprecated in MediaWiki 1.35. [Called from DarkVectorTemplate::execute in /var/www/html/w/skins/DarkVector/DarkVectorTemplate.php at line 215] in /var/www/html/w/includes/debug/MWDebug.php on line 376
I have no idea why we are running debug code on a production server. I guess that's a separate issue for the Mediawiki folks.
My apologies if this is not a DarkVector issue.
Our mediawiki information can be found here. Noloader (talk) 02:59, 30 May 2021 (UTC) Reply
- Had the same issue.
- According to mediawiki change-log, this is deprecated, as the message says anyways.
- Edit file /mediawiki/skins/DarkVector/DarkVectorTemplate.php
- Replace line (215)
- <?php $footericons = $this->getFooterIcons( "icononly" );
- with
- <?php $footericons = $this->get('footericons');
- I'm not 100% sure if it really fixes the issue, but the error went away and the footer looks alright now. Naven122 (talk) 15:32, 6 June 2021 (UTC) Reply
- Had this problem too and this fixed it. Thanks. 64.129.73.226 (talk) 18:37, 12 July 2021 (UTC) Reply
- This issue is fixed in the master branch, thanks! Martynov Maxim (talk) 21:21, 27 July 2021 (UTC) Reply
- What is the best way to make a working copy of the current version of Vector that can then be adjusted?
- I've enjoyed using DarkVector and wanted to try something similar (a skin based on Vector with cosmetic adjustments), but when I duplicate the current 1.37 Vector and change out the skin name in the code and file names, it produces internal errors like this:
Class 'AltVector\SkinVersionLookup' not found. Backtrace: from /var/www/my.wiki/public_html/mediawiki-1.37.2/skins/AltVector/includes/ServiceWiring.php(55) ...
- Thanks for any thoughts/suggestions! Huwmanbeing (talk) 09:45, 11 May 2022 (UTC) Reply
- I tried this a year or two ago and couldn't figure it out. Very frustrating. Something that I wish MediaWiki would improve on, like make it easier to fork a skin. Flounder ceo (talk) 03:14, 25 October 2022 (UTC) Reply
- Honestly, that's a huge pain. I wish Vector skin has option to set custom colors, e.g. using CSS variables or something like that Martynov Maxim (talk) 14:05, 14 May 2022 (UTC) Reply
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
This skin has been working fine on my site for years. Is it time to change its status to stable? Flounder ceo (talk) 03:11, 25 October 2022 (UTC) Reply
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
I just installed this skin per directions on our internal wiki. When I switch to it, the Tools entries on the left sidebar are not rendered.
I'm a noob at this. Is there a straightforward way to show/add these entries? 195.252.220.205 (talk) 13:12, 30 November 2022 (UTC) Reply
- Edit to add: It looks like I am talking about personal tools. 195.252.220.205 (talk) 13:29, 30 November 2022 (UTC) Reply
The following discussion is closed. Please do not modify it. Subsequent comments should be made on the appropriate discussion page. No further edits should be made to this discussion.
Does anyone else have this skin working on 1.39.1? Flounder ceo (talk) 20:43, 23 December 2022 (UTC) Reply
- Should be fixed now 213.87.45.31 (talk) 11:07, 20 July 2023 (UTC) Reply