Manage Themes: Improved separators (markup/styles) for current theme options menu. see #20403.

git-svn-id: https://develop.svn.wordpress.org/trunk@20459 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith 2012-04-12 22:16:51 +00:00
parent 8b48d30d79
commit 7dcf9d5a61
2 changed files with 28 additions and 3 deletions

View File

@ -4316,6 +4316,7 @@ h3.available-themes {
}
#current-theme .theme-info li,
.theme-options li,
.available-theme .action-links li {
float: left;
padding-right: 10px;
@ -4324,6 +4325,7 @@ h3.available-themes {
}
#current-theme .theme-info li:last-child,
.theme-options li:last-child,
.available-theme .action-links li:last-child {
padding-right: 0;
margin-right: 0;
@ -4372,6 +4374,7 @@ h3.available-themes {
margin: 3px 0 16px;
font-size: 20px;
}
#current-theme h4 span {
margin-left: 20px;
font-size: 12px;
@ -4403,12 +4406,28 @@ h3.available-themes {
}
.theme-options {
overflow: hidden;
font-size: 14px;
padding-bottom: 10px;
}
.theme-options .load-customize {
margin-right: 20px;
margin-right: 30px;
float: left;
}
.theme-options span {
float: left;
margin-right: 10px;
text-transform: uppercase;
font-size: 11px;
line-height: 18px;
color: #999;
}
.theme-options ul {
float: left;
margin: 0;
}
/* Allow for three-up on 1024px wide screens, e.g. tablets */

View File

@ -151,8 +151,14 @@ $class = $screenshot ? 'has-screenshot' : '';
}
}
}
echo implode ( ' | ', $options );
?></div>
?>
<ul>
<?php foreach ( $options as $option ) : ?>
<li><?php echo $option; ?></li>
<?php endforeach; ?>
</ul>
</div>
</div>