- Fix support for expanding (wide) widgets in the Inactive Widgets area.
- Remove resizing of the sidebars height.
- Stop removing unneeded "for" attributes from labels inside the widgets. Was a fix for IE6 odd behaviour.  

See #26117.
Built from https://develop.svn.wordpress.org/trunk@26277


git-svn-id: http://core.svn.wordpress.org/trunk@26182 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz
2013-11-20 01:35:10 +00:00
parent 0dcf40e749
commit 4070cdcf66
6 changed files with 42 additions and 51 deletions

View File

@@ -10304,34 +10304,39 @@ div#widgets-right .closed .sidebar-description {
div#widgets-right .sidebar-name h3 {
padding: 15px 15px;
}
div#widgets-right .sidebar-name .sidebar-name-arrow:before {
left: 0;
top: 4px;
}
div#widgets-right .widget-top {
padding: 0;
background: #f7f7f7;
}
div#widgets-right .widget-title-action {
float: left;
position: relative;
top: 14px;
left: 10px;
}
div#widgets-right a.widget-action:after {
content: '\f111';
color: #888;
}
div#widgets-right .widget-inside {
border-top: 1px solid #dedede;
}
div#widgets-right .widgets-sortables {
min-height: 42px !important; /* Inline styles */
padding: 0 8px;
margin-bottom: 8px;
position: relative;
}
div#widgets-right .widgets-sortables:before {
display: block;
content: "";
@@ -10348,6 +10353,11 @@ div#widgets-right .widgets-sortables:before {
color: #aaa;
}
.sidebar-name .spinner {
margin: -5px 5px;
float: none;
}
/* Accessibility Mode */
#available-widgets .widget-control-edit .edit {
display :none;

File diff suppressed because one or more lines are too long

View File

@@ -10304,34 +10304,39 @@ div#widgets-right .closed .sidebar-description {
div#widgets-right .sidebar-name h3 {
padding: 15px 15px;
}
div#widgets-right .sidebar-name .sidebar-name-arrow:before {
right: 0;
top: 4px;
}
div#widgets-right .widget-top {
padding: 0;
background: #f7f7f7;
}
div#widgets-right .widget-title-action {
float: right;
position: relative;
top: 14px;
right: 10px;
}
div#widgets-right a.widget-action:after {
content: '\f111';
color: #888;
}
div#widgets-right .widget-inside {
border-top: 1px solid #dedede;
}
div#widgets-right .widgets-sortables {
min-height: 42px !important; /* Inline styles */
padding: 0 8px;
margin-bottom: 8px;
position: relative;
}
div#widgets-right .widgets-sortables:before {
display: block;
content: "";
@@ -10348,6 +10353,11 @@ div#widgets-right .widgets-sortables:before {
color: #aaa;
}
.sidebar-name .spinner {
margin: -5px 5px;
float: none;
}
/* Accessibility Mode */
#available-widgets .widget-control-edit .edit {
display :none;

File diff suppressed because one or more lines are too long