which is very inconvenient when editing lengthy articles
Skin talk:Refreshed
Is there already a solution for this? I have the same problem.
I know this is kinda old topic, but there's a quick (albeit not nice-looking) fix - paste in your wiki's Common.css this:
.ve-ui-toolbar > .oo-ui-toolbar-bar {
z-index: 1000 !important;
}
Alright, I have found another fix where the toolbar doesn't block the other panels. Paste this in Common.css:
.ve-ui-toolbar-floating > .oo-ui-toolbar-bar {
top: 6em !important;
}
This skin is pretty nice but there's one problem. The page action bar will turned gibberish if you use the another language (e.g. Chinese, Korean, Hindi etc.)
Thank you! The issue you are describing should have been resolved as of this commit: https://github.com/wikimedia/mediawiki-skins-Refreshed/commit/1634a330b40f6fd709ba00dad2e603c63dbd89cf Please install the skin from the master branch and follow up if the issue persists.
I like Your skin but not Your icons . The new FontAwesome extension integrates icons like
{{#far:fa-comment-alt}}
In RefreshedTemplate.php the icons are added like
'wikiglyph wikiglyph-trash' => 'ca-delete',
Do You know a syntax-solution how to replace these icons with fontAwesome
You can't use MediaWiki extensions to change the icons, but you can still customize them.
Refreshed 3 uses CSS pseudo-elements to produce its icons. In principle you should be able to adjust them with CSS (select the relevant pseudo-element with CSS, remove its text by changing its `content` value, and add a new icon as a `background-image`).
Meanwhile, Refreshed 4 uses inline SVGs. You can adjust those similarly (select the SVG with CSS, give it a `background-image`, and hide its child path element(s) using `display: none`).
I would like to make the sidebar (which uses much space) switchable with a list Icon in the right corner whose button is anyway superfluous (similar to a https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_sidenav).
What must i change to achieve this) ?
Erudite skin moves bar from side to top.
Hi, I'm very happy I've found this skin. It made my project much more acceptable round here. But I have a small issue with the sidebar. I can't make it show capital letters, I've tried around a lot on MediaWiki:Sidebar, but never got back capital letters. Any ideas anyone? I'm running dry on that. Thanks a lot!
Hello,
I am not the creator of this skin but I customised it significantly. The sidebar is lowercase by CSS but you can either edit the skin code or override it by adding the following to your MediaWiki:Refreshed.css page:
- sidebar li,#sidebar .main {text-transform:initial;}
Sorry I can't work out how to get the code to display nicely here. Let me know if it works!
Lachlan
The "(Git master)" link doesn't work: https://github.com/wikimedia/mediawiki-extensions-Refreshed/archive/master.tar.gz
The link at GitHub works: https://github.com/wikimedia/mediawiki-skins-Refreshed/archive/master.zip
Hi there,
This was a bug in Template:WikimediaDownloadSkin, which I fixed in Special:Diff/2537702. This template uses Template:DownloadGitSnapshot which by default uses the mediawiki-extensions-
prefix, so I changed the base prefix and it's fixed now. It might take a little bit of time for this change to appear.
Thank you for pointing that out! :)
The bug is still there it seems.
the
a:not( [href] ) { cursor: pointer; }
in #fade-overlay?
i want to use this Skin only as a mobile skin, so that i can still use for Desktop purpose the Standard Vector Skin, is this possible and how?
No this is not possible
Yes this is possible. You need to install Extension:MobileDetect and add this code to your LocalSettings.php:
#######Mobile Detection -- change skin for mobile devices! and mobile only / desktop only views#########
require_once "$IP/extensions/MobileDetect/MobileDetect.php";
// Mobile skin
require_once "$IP/extensions/MobileDetect/MobileDetect.php";
$mobile = mobiledetect();
if ( $mobile === false ) $wgDefaultSkin = "vector"; # If not Mobile
if ( $mobile === true ) $wgDefaultSkin = "refreshed";
Before this code, you of course need to load the Refreshed skin and have it installed in your /skins folder.
@Jack Phoenix I installed echo on my wiki but as you [testwiki.ga]
As you can see here the placement is not right.
Could someone please help me here?
Since the name indicates that it's a wiki meant for testing and development such as experimenting with alpha/beta/experimental versions of extensions and not a regular wiki meant for building content, I won't be providing any support here. The only thing I'll tell you is that want to check that you have the latest stable (not alpha, beta or any experimental version) of the Echo extension.
Further more, for extensions under the Brickimedia umbrella, this should be going to Phabricator, not on the talk page.
According to LICENSE it is LGPL-3.0+, according to skin.json and composer.json it is GPL-3.0+.
I was not able to open an issue at GitHub (disabled?) so I am asking here.
Brickimedia is moved to Phabricator from Github.
Thanks for pointing me to Phabricator. I just created task T136563 for this. While I was at it I added the link to Phabricator on the skin's docu page. I however failed to add a proper link to the canonical repo. Having a note at GitHub that it is just a mirror will be cool too. Cheers