website/docs: don't capitalize commands docs

This commit is contained in:
Mitchell Hashimoto 2014-02-27 13:57:22 -08:00
parent 5de2bda9d7
commit ac16f7a1fb
2 changed files with 7 additions and 1 deletions

View File

@ -104,7 +104,7 @@
<li<%= sidebar_current("cli") %>><a href="/v2/cli/index.html">Command-Line Interface</a></li>
<% if sidebar_section == "cli" %>
<ul class="sub unstyled">
<ul class="sub unstyled nocap">
<li<%= sidebar_current("cli-box") %>><a href="/v2/cli/box.html">box</a></li>
<li<%= sidebar_current("cli-destroy") %>><a href="/v2/cli/destroy.html">destroy</a></li>
<li<%= sidebar_current("cli-halt") %>><a href="/v2/cli/halt.html">halt</a></li>

View File

@ -113,6 +113,12 @@
ul { //style documentation list
&.nocap {
li {
text-transform: none;
}
}
li { //style documentation list items
text-transform: capitalize;
color: @white;