From 4fc08d24c501b761109ee1669ff6bc2f91c07b56 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 16 Apr 2014 16:24:45 -0700 Subject: [PATCH] Make the Add template button not wrap to the next line By default, MWTitleInputWidgets are now 30em wide, but this doesn't work in the transclusion dialog where we want to put the "Add template" button after an MWTitleInputWidget and have it not wrap to the next line. So make the MWTitleInputWidget on the add template page 20em wide instead (this is what they all were before the default was changed to 30em). Change-Id: I2f33a87427657f4e27939c401436c4ce6441208c --- modules/ve-mw/ui/styles/ve.ui.MWTransclusionDialog.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/ve-mw/ui/styles/ve.ui.MWTransclusionDialog.css b/modules/ve-mw/ui/styles/ve.ui.MWTransclusionDialog.css index f00a7677d8..b6db986ff7 100644 --- a/modules/ve-mw/ui/styles/ve.ui.MWTransclusionDialog.css +++ b/modules/ve-mw/ui/styles/ve.ui.MWTransclusionDialog.css @@ -13,6 +13,10 @@ margin-left: 0.5em; } +.ve-ui-mwTransclusionDialog-addTemplateFieldset .ve-ui-mwTitleInputWidget { + width: 20em; +} + .ve-ui-mwTransclusionDialog-addParameterFieldset .ve-ui-mwParameterSearchWidget { position: relative; overflow: hidden;