toolbar overflow
See attachment.
I think the toolbar should become 2-row automatically.
Version: unspecified
Severity: normal
Attached:
liangent | |
Jun 13 2010, 1:23 PM |
F27212407: Screen Shot 2018-11-13 at 15.42.28.png | |
Nov 13 2018, 2:49 PM |
F27212406: Screen Shot 2018-11-13 at 15.47.34.png | |
Nov 13 2018, 2:49 PM |
F6699: overflow.png | |
Jun 25 2015, 2:48 AM |
toolbar overflow
See attachment.
I think the toolbar should become 2-row automatically.
Version: unspecified
Severity: normal
Attached:
Subject | Repo | Branch | Lines +/- | |
---|---|---|---|---|
Toolbar: Allow groups to be multiline/wrap | mediawiki/extensions/WikiEditor | master | +1 -1 |
mhershberger wrote:
Unassigning default assignments. http://article.gmane.org/gmane.science.linguistics.wikipedia.technical/54734
This has been solved on Italian Wikisource by setting automatic height to the container divs: $('.wikiEditor-ui-toolbar div').css('height', 'auto');
It also happens with standard buttons when using low screen resolution, or enlarging font size via browser. It is more evident on Wikisource, in namespace Page, because ProofreadPage extension forces the editbox to half width.
Attached:
Fwiw... WikiEditor was probably rolled out before the series of CSS3/HTML5 additions & improvements of the day were realistically supportable by MediaWiki so its framework is kind of "klunky" as a result when compared to the latest design approaches.
One way you could recover some "button space" for example is to invoke the border-box setting for box-sizing: for the various toolbar DIV containers and then tweak your way back to the main DIV, refining any desired positioning as you go along.
To get an idea of the differences in layout without breaking anything just apply the following to your local .css file
.wikiEditor-ui-toolbar * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
Change 473220 had a related patch set uploaded (by TheDJ; owner: TheDJ):
[mediawiki/extensions/WikiEditor@master] Toolbar: Allow groups to be multiline/wrap
Change 473220 merged by jenkins-bot:
[mediawiki/extensions/WikiEditor@master] Toolbar: Allow groups to be multiline/wrap