Media Grid, add padding to "No Media Found" message.

Props michalzuber.
See #24716.

Built from https://develop.svn.wordpress.org/trunk@29067


git-svn-id: http://core.svn.wordpress.org/trunk@28853 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-07-10 17:31:15 +00:00
parent d297258d99
commit 7f4716e1c3
6 changed files with 12 additions and 4 deletions

View File

@ -1114,6 +1114,10 @@ video#inline-media-node {
margin-left: 0.5em;
}
.attachments-browser .no-media {
padding: 2em 2em 0 0;
}
/**
* Progress Bar
*/

File diff suppressed because one or more lines are too long

View File

@ -1114,6 +1114,10 @@ video#inline-media-node {
margin-right: 0.5em;
}
.attachments-browser .no-media {
padding: 2em 0 0 2em;
}
/**
* Progress Bar
*/

File diff suppressed because one or more lines are too long

View File

@ -5717,7 +5717,7 @@
controller: this.controller
});
this.attachmentsNoResults.$el.addClass( 'hidden' );
this.attachmentsNoResults.$el.addClass( 'hidden no-media' );
this.attachmentsNoResults.$el.html( 'No media found.' );
this.views.add( this.attachmentsNoResults );

File diff suppressed because one or more lines are too long