Make the Install Plugins search results page responsive, so the table doesn't overflow the viewport. Props joen, fixes #25976.
Built from https://develop.svn.wordpress.org/trunk@26223 git-svn-id: http://core.svn.wordpress.org/trunk@26130 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
963b2aa574
commit
114d47cf18
|
@ -12281,7 +12281,36 @@ li#wp-admin-bar-toggle-button {
|
|||
font-size: 1.4em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
/* Add New plugins page */
|
||||
table.plugin-install .column-name,
|
||||
table.plugin-install .column-version,
|
||||
table.plugin-install .column-rating,
|
||||
table.plugin-install .column-description {
|
||||
display: block;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
table.plugin-install th.column-name, table.plugin-install th.column-version, table.plugin-install th.column-rating, table.plugin-install th.column-description {
|
||||
display: none;
|
||||
}
|
||||
|
||||
table.plugin-install td.column-name strong {
|
||||
font-size: 1.4em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
table.plugin-install #the-list td {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
table.plugin-install #the-list tr {
|
||||
display: block;
|
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
|
||||
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
/* Dashboard */
|
||||
#dashboard_recent_comments #the-comment-list .comment-item .avatar {
|
||||
height: 30px;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -12281,7 +12281,36 @@ li#wp-admin-bar-toggle-button {
|
|||
font-size: 1.4em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
/* Add New plugins page */
|
||||
table.plugin-install .column-name,
|
||||
table.plugin-install .column-version,
|
||||
table.plugin-install .column-rating,
|
||||
table.plugin-install .column-description {
|
||||
display: block;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
table.plugin-install th.column-name, table.plugin-install th.column-version, table.plugin-install th.column-rating, table.plugin-install th.column-description {
|
||||
display: none;
|
||||
}
|
||||
|
||||
table.plugin-install td.column-name strong {
|
||||
font-size: 1.4em;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
table.plugin-install #the-list td {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
table.plugin-install #the-list tr {
|
||||
display: block;
|
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
|
||||
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
/* Dashboard */
|
||||
#dashboard_recent_comments #the-comment-list .comment-item .avatar {
|
||||
height: 30px;
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue