From 0294d8b6a6d8fefd1676215b77eaf86ba58e036d Mon Sep 17 00:00:00 2001 From: David Cook Date: Fri, 8 Feb 2013 13:49:16 +1100 Subject: [PATCH] Bug 9571 - Fix width for textareas in Edit Item screen This patch adds a style for textareas on the Edit Item screen of addbiblio.pl so that they are roughly the same length as the other input elements around it on the page. To test: Before applying patch... 1) Create a new item for any biblio with a URL (subfield u) of over 100 characters (you can use www.lettercount.com to count the number of characters in your URL). 2) In any browser (I've already looked at IE, Firefox, and Chrome on Windows), edit the item (either by clicking "Edit Items" from the Normal view of the bib record then clicking "Edit" next to the applicable item, or clicking on the "Items" view in the bib record and clicking "Edit item" next to the relevant item). 3) Notice that the textarea for the url is absolutely tiny. Difficult to read and difficult to interact with. Apply patch. 1) Notice that the textarea is roughly the same size as the other input elements on the page. Signed-off-by: Kyle M Hall --- koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css b/koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css index 79ceb48..0b23dc5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css +++ b/koha-tmpl/intranet-tmpl/prog/en/css/addbiblio.css @@ -130,6 +130,10 @@ a.tagnum { width : auto; } +#cataloguing_additem_newitem textarea.input_marceditor { + width : 31em; +} + .mandatory_marker { color: red; } -- 1.7.2.5