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

This commit is contained in:
Takashi Irie 2012-11-01 11:49:23 +09:00
parent 152ae262eb
commit 09a21f2e59
1 changed files with 5 additions and 0 deletions

View File

@ -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;