Add post format icons to the radio chooser. This also trims empty margins from the sprites to make them usable in RTL and make positioning numbers more sane. props ryelle, kovshenin for the initial patch. fixes #24519.

git-svn-id: https://develop.svn.wordpress.org/trunk@24429 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Helen Hou-Sandi
2013-06-07 17:15:53 +00:00
parent dae6b6b6ab
commit 714da2b9e0
10 changed files with 88 additions and 29 deletions

View File

@@ -3946,40 +3946,53 @@ a.post-state-format {
text-indent: -999em;
}
a.post-state-format.format-image {
background-position: -8px -40px;
#post-formats-select {
line-height: 2em;
}
a.post-state-format.format-gallery {
background-position: -8px -72px;
label.post-format-icon {
margin-left: 5px;
padding: 2px 0 2px 21px;
}
a.post-state-format.format-audio {
background-position: -8px -104px;
.post-format-icon.post-format-standard {
background-position: 0 0;
}
a.post-state-format.format-video {
background-position: -8px -136px;
.post-format-icon.post-format-image {
background-position: 0 -32px;
}
a.post-state-format.format-chat {
background-position: -8px -168px;
.post-format-icon.post-format-gallery {
background-position: 0 -64px;
}
a.post-state-format.format-status {
background-position: -8px -200px;
.post-format-icon.post-format-audio {
background-position: 0 -96px;
}
a.post-state-format.format-aside {
background-position: -8px -232px;
.post-format-icon.post-format-video {
background-position: 0 -128px;
}
a.post-state-format.format-quote {
background-position: -8px -265px;
.post-format-icon.post-format-chat {
background-position: 0 -160px;
}
a.post-state-format.format-link {
background-position: -8px -296px;
.post-format-icon.post-format-status {
background-position: 0 -192px;
}
.post-format-icon.post-format-aside {
background-position: 0 -224px;
}
.post-format-icon.post-format-quote {
background-position: 0 -256px;
}
.post-format-icon.post-format-link {
background-position: 0 -288px;
}
@@ -6432,8 +6445,7 @@ table.form-table td .updated {
width: 250px;
}
#post-visibility-select,
#post-formats-select {
#post-visibility-select {
line-height: 1.5em;
margin-top: 3px;
}