Fix the display of widgets in wp-admin when their descriptions wrap to two lines. props mattdanner. fixes #15180
git-svn-id: http://core.svn.wordpress.org/trunk@21547 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e1a28534d0
commit
9739261969
|
@ -273,6 +273,9 @@ p.search-box {
|
||||||
margin: -3px 0 4px;
|
margin: -3px 0 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#widget-list .widget {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
#editorcontainer #content {
|
#editorcontainer #content {
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
|
@ -7822,7 +7822,8 @@ div.sidebar-name {
|
||||||
margin: 0 10px 15px;
|
margin: 0 10px 15px;
|
||||||
border: 0 none;
|
border: 0 none;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
float: left;
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
||||||
#widget-list .widget-description {
|
#widget-list .widget-description {
|
||||||
|
|
Loading…
Reference in New Issue