Page MenuHomePhabricator

Enhanced toolbar overlap
Closed, InvalidPublic

Description

Overlap by edit window

There is an overlap of something called "Format" (in Czech: "Formát") and "Insert" (in Czech: "Vložit"). See images. This is with skin Vector and FF 16.0.2, cs.wn. Same problem in:
*Google Chrome Version 23.0.1271.64 m
*Opera v 12.02
*IE 7


Version: wmf-deployment
Severity: normal

Attached:

Překryv.jpg (158×751 px, 17 KB)

Details

Reference
bz42182

Event Timeline

bzimport raised the priority of this task from to Needs Triage.Nov 22 2014, 1:10 AM
bzimport set Reference to bz42182.
bzimport added a subscriber: Unknown Object (MLST).

This is caused by http://cs.wikinews.org/wiki/MediaWiki:Common.css
You change the style for div.label there, but this class is used in the toolbar, too.

You either should rename the class you called label by something more descriptive to avoid having one class for different things.

Or you have to add something like

.wikiEditor-ui-toolbar .label {
border-radius:0;
box-shadow:none;
padding:0;
}

to MediaWiki:Common.css

(In reply to comment #2)

You either should rename the class you called label by something more
descriptive to avoid having one class for different things.

I.e. change in [[cs:n:Template:Cedule]] the code from
<div class="label label-pageinfo{{#if:{{{typ|}}}|...
to
<div class="cedule-label label-pageinfo{{#if:{{{typ|}}}|...

and the style definition in [[cs:n:MediaWiki:Common.css]] from
div.label {
to
div.cedule-label {

Thank you Michael, I will contact the local admins.