From 09a21f2e595812b252a25154e2fd21335d264cd8 Mon Sep 17 00:00:00 2001 From: Takashi Irie Date: Thu, 1 Nov 2012 11:49:23 +0900 Subject: [PATCH] Added max-width to select elements in widgets to prevent it overflowing. This intends to fix a common issue - the dropdown in the category widget overflows when a blog has a long category name --- style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style.css b/style.css index 3ed8bdcd..06e1de7c 100644 --- a/style.css +++ b/style.css @@ -545,6 +545,11 @@ object { margin: 0 0 1.5em; } +/* Make sure select elements fit in widgets */ +.widget select { + max-width: 100%; +} + /* Search widget */ #searchsubmit { display: none;