Improve focus styles for:

* Quick Draft links
* Media Library list mode thumbnails 

props afercia.
fixes #32284, #32291.

git-svn-id: https://develop.svn.wordpress.org/trunk@32476 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2015-05-09 21:04:21 +00:00
parent 0422e527b1
commit bcbae1cee3
2 changed files with 7 additions and 6 deletions

View File

@ -2036,14 +2036,17 @@ td.media-icon {
padding-bottom: 8px; padding-bottom: 8px;
} }
td.media-icon a {
display: inline-block;
}
td.media-icon img { td.media-icon img {
display: block;
max-width: 80px; max-width: 80px;
max-height: 60px; max-height: 60px;
width: auto; width: auto;
height: auto; height: auto;
} border: 1px solid #e7e7e7;
td.image-icon img {
border: 1px solid rgba(0, 0, 0, 0.07); border: 1px solid rgba(0, 0, 0, 0.07);
} }

View File

@ -448,7 +448,6 @@ body #dashboard-widgets .postbox form .submit {
} }
#dashboard_quick_press form { #dashboard_quick_press form {
overflow: hidden;
margin: 12px; margin: 12px;
} }
@ -569,12 +568,11 @@ form.initial-form.quickpress-open input#title {
} }
#dashboard_quick_press .draft-title { #dashboard_quick_press .draft-title {
overflow: hidden; word-wrap: break-word;
} }
#dashboard_quick_press .draft-title a, #dashboard_quick_press .draft-title a,
#dashboard_quick_press .draft-title time { #dashboard_quick_press .draft-title time {
float: left;
margin: 0 5px 0 0; margin: 0 5px 0 0;
} }