Hide the 'Dismiss' label in the dashboard welcome panel at smartphone sizes, so the close link doesn't overlap the Welcome headline. See #25858.

git-svn-id: https://develop.svn.wordpress.org/trunk@26712 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Thomas 2013-12-06 01:15:33 +00:00
parent 2dab52c306
commit 21cd81e21b

View File

@ -13001,6 +13001,23 @@ li#wp-admin-bar-menu-toggle {
height: 100%; height: 100%;
z-index: 400; z-index: 400;
} }
/* Keep the close icon from overlapping the Welcome text. */
.welcome-panel .welcome-panel-close {
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
width: 20px;
height: 20px;
right: 0;
padding: 5px;
}
/* Make the close icon larger for tappability. */
#welcome-panel.welcome-panel .welcome-panel-close::before {
font-size: 20px;
margin: 0;
}
/* Keep full-width boxes on Edit Post page from causing horizontal scroll */ /* Keep full-width boxes on Edit Post page from causing horizontal scroll */
div#post-body.metabox-holder.columns-1 { div#post-body.metabox-holder.columns-1 {