From c4830b15e8c3ed8705b8a31283480ade35b086f2 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Fri, 9 Aug 2013 22:19:28 +0200 Subject: [PATCH] CologneBlue: Make editform's textareas 100% wide This was the last skin that didn't have a 100% wide textareas in the editform. Brought it in line with the other skins. Eventually we should make this skin use common*.css, but this is needed for related patch set: I1b92499961b7ea1949e1d1e48ced6f562822d1cd. Change-Id: I07895f767049a23945d3a989f7a8164f49847934 --- skins/cologneblue/screen.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/skins/cologneblue/screen.css b/skins/cologneblue/screen.css index 7bdfca5205..c6c906315e 100644 --- a/skins/cologneblue/screen.css +++ b/skins/cologneblue/screen.css @@ -55,6 +55,14 @@ p, pre, .mw-code, td, th, li, dd, dt { textarea { overflow: auto; + width: 100%; +} + +#editform textarea { + display: block; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; } #footer { -- 2.20.1