Skin talk:Refreshed

About this board

VisualEditor with Refreshed skin does not activate the floating toolbar

4
62.72.73.138 (talkcontribs)

which is very inconvenient when editing lengthy articles

62.72.73.138 (talkcontribs)

Is there already a solution for this? I have the same problem.

MasterStudioCZ (talkcontribs)

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;

}

MasterStudioCZ (talkcontribs)

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;

}

Reply to "VisualEditor with Refreshed skin does not activate the floating toolbar"

Problem with non-English character

2
Achia70 (talkcontribs)

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.)

MtMNC (talkcontribs)

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.

Font awesome integration

2
Manbu (talkcontribs)

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

MtMNC (talkcontribs)

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`).

Reply to "Font awesome integration"
Manbu (talkcontribs)
Actiuinformatica (talkcontribs)
Reply to "Sidebar switchable"

capital letters in MediaWiki:Sidebar

2
89.204.153.2 (talkcontribs)

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!

Garuda3 (talkcontribs)

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:

  1. 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

Reply to "capital letters in MediaWiki:Sidebar"
97.120.8.179 (talkcontribs)
SamanthaNguyen (talkcontribs)
Tactica (talkcontribs)

The bug is still there it seems.

Reply to "Git master link broken"
Jakeriper (talkcontribs)

the

a:not( [href] ) { cursor: pointer; }

in #fade-overlay?

Reply to "can we not do without"

Skin for only mobile view

4
93.215.27.220 (talkcontribs)

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?

2600:1000:B07F:2177:8DF3:66FE:86EB:59CC (talkcontribs)

No this is not possible

68.185.215.47 (talkcontribs)

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";

68.185.215.47 (talkcontribs)

Before this code, you of course need to load the Refreshed skin and have it installed in your /skins folder.

Reply to "Skin for only mobile view"
67.244.49.134 (talkcontribs)

@Jack Phoenix I installed echo on my wiki but as you [testwiki.ga]

2002:43F4:3186:1234:99D:BEE4:215A:A135 (talkcontribs)

As you can see here the placement is not right.

67.244.49.134 (talkcontribs)
2002:43F4:3186:1234:C9A1:84D7:A331:AB08 (talkcontribs)

Could someone please help me here?

SamanthaNguyen (talkcontribs)

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.

Kghbln (talkcontribs)

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.

GeorgeBarnick (talkcontribs)
Kghbln (talkcontribs)

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