Override overflow: hidden; for <h3>s in the command help dialog

When this dialog is not isolated, MediaWiki's overflow: hidden;
rules for headings cut off part of the text in the <h3>s.

Compensates for Id425c56d9d24 in VE core.

Change-Id: Id9f6bd2bdbed0c6fe57e897c2415c3eceff900a6
This commit is contained in:
Roan Kattouw 2014-10-27 17:51:46 -07:00
parent 0dad360036
commit 5876014c8f

View file

@ -95,3 +95,10 @@
.ve-ui-mwHelpPopupTool-version-link {
unicode-bidi: embed;
}
/* Dialogs */
/* Override overflow: hidden; from MW styles */
.ve-ui-commandHelpDialog-section h3 {
overflow: visible;
}