Widgets: Wraps long widget titles in classic Widgets screen.

Follow-up to [18577], [26426].

Props afercia, bravokeyl, drewapicture, gkloveweb, hitendra-chopda, hellofromTonya, ianhayes94, ovann86, pankajmohale, poena, sabrib, swissspidy, xkon.
Fixes #37451.
Built from https://develop.svn.wordpress.org/trunk@52177


git-svn-id: http://core.svn.wordpress.org/trunk@51769 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
hellofromTonya 2021-11-16 03:17:58 +00:00
parent 7a4c5007b6
commit 3f7dbfd6a9
5 changed files with 21 additions and 7 deletions

View File

@ -347,7 +347,8 @@
margin: 0;
padding: 8px 10px;
overflow: hidden;
white-space: nowrap;
white-space: normal;
line-height: 1.5;
}
.widgets-holder-wrap .description {
@ -482,7 +483,7 @@ div#widgets-right .sidebar-description {
div#widgets-right .sidebar-name h2,
div#widgets-right .sidebar-name h3 {
padding: 15px 7px;
padding: 15px 7px 15px 15px;
}
div#widgets-right .widget-top {
@ -509,6 +510,12 @@ div#widgets-right .closed .widgets-sortables {
margin: -5px 5px;
}
.sidebar-name .spinner {
position: absolute;
top: 18px;
left: 30px;
}
/* Dragging a widget over a closed sidebar */
#widgets-right .widgets-holder-wrap.widget-hover {
border-color: #787c82;

File diff suppressed because one or more lines are too long

View File

@ -346,7 +346,8 @@
margin: 0;
padding: 8px 10px;
overflow: hidden;
white-space: nowrap;
white-space: normal;
line-height: 1.5;
}
.widgets-holder-wrap .description {
@ -481,7 +482,7 @@ div#widgets-right .sidebar-description {
div#widgets-right .sidebar-name h2,
div#widgets-right .sidebar-name h3 {
padding: 15px 7px;
padding: 15px 15px 15px 7px;
}
div#widgets-right .widget-top {
@ -508,6 +509,12 @@ div#widgets-right .closed .widgets-sortables {
margin: -5px 5px;
}
.sidebar-name .spinner {
position: absolute;
top: 18px;
right: 30px;
}
/* Dragging a widget over a closed sidebar */
#widgets-right .widgets-holder-wrap.widget-hover {
border-color: #787c82;

File diff suppressed because one or more lines are too long

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.9-alpha-52176';
$wp_version = '5.9-alpha-52177';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.