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:
parent
152ae262eb
commit
09a21f2e59
1 changed files with 5 additions and 0 deletions
|
@ -545,6 +545,11 @@ object {
|
||||||
margin: 0 0 1.5em;
|
margin: 0 0 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Make sure select elements fit in widgets */
|
||||||
|
.widget select {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
/* Search widget */
|
/* Search widget */
|
||||||
#searchsubmit {
|
#searchsubmit {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue