From 4724aaf6e389b6e8f3a58d68d0f2ebb33730dae7 Mon Sep 17 00:00:00 2001 From: ekgr Date: Sun, 21 Jun 2015 17:25:47 +0200 Subject: [PATCH] Changed size of languages menu The Portuguese (brazil) option was too long and wrapping around to the next line, appearing right over the next language in the menu. Increased the width to accommodate in one line. Also increased the max height as the last language option wasn't visible. The menu can take one more language before needing to increase the height. --- css/main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css/main.css b/css/main.css index c5925c3..f49f9a6 100644 --- a/css/main.css +++ b/css/main.css @@ -83,12 +83,12 @@ div#header { span.customSelectOptions { margin: 0; - width: 80px; + width: 120px; } .customSelectOptions > ul { max-height: 20px; - width: 80px; + width: 120px; overflow: hidden; -webkit-transition: max-height 1s; transition: max-height 1s; @@ -101,7 +101,7 @@ span.customSelectOptions { } .customSelectOptions > ul:hover { - max-height: 400px; + max-height: 450px; } .customSelectOptions > ul > li {