Skip to content

Commit

Permalink
Changed size of languages menu
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ekgr committed Jun 21, 2015
1 parent d5bbca9 commit 4724aaf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -101,7 +101,7 @@ span.customSelectOptions {
}

.customSelectOptions > ul:hover {
max-height: 400px;
max-height: 450px;
}

.customSelectOptions > ul > li {
Expand Down

0 comments on commit 4724aaf

Please sign in to comment.