Merge pull request #99 from iamtakashi/max-width-for-select

Add max-width to select elements in widgets to prevent it overflowing from widget areas. props @iamtakash
This commit is contained in:
Michael Fields 2013-01-05 09:58:17 -08:00
commit 80d803aff5
1 changed files with 5 additions and 0 deletions

View File

@ -541,6 +541,11 @@ object {
margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets */
.widget select {
max-width: 100%;
}
/* Search widget */
#searchsubmit {
display: none;