diff options
| author | Igor Minar | 2011-07-06 14:04:08 -0700 | 
|---|---|---|
| committer | Igor Minar | 2011-07-08 08:24:09 -0700 | 
| commit | 7b32c7138647a45138a10dbb5ff314d1e18220fd (patch) | |
| tree | 1d22fc1e8781fcc80aa508be5155bc825aa0e280 /docs/src | |
| parent | 28e84ca1671c5d0588d9e9a1f38547805f6cd8b5 (diff) | |
| download | angular.js-7b32c7138647a45138a10dbb5ff314d1e18220fd.tar.bz2 | |
docs:css: remove bullet points from tutorial sidebar
Diffstat (limited to 'docs/src')
| -rw-r--r-- | docs/src/templates/docs.css | 12 | ||||
| -rw-r--r-- | docs/src/templates/index.html | 2 | 
2 files changed, 12 insertions, 2 deletions
| diff --git a/docs/src/templates/docs.css b/docs/src/templates/docs.css index f1c50007..bc0b947b 100644 --- a/docs/src/templates/docs.css +++ b/docs/src/templates/docs.css @@ -169,10 +169,20 @@ li {  } +#sidebar #content-list.tutorial { +  list-style: none; +  text-indent: -1.2em; +} + +#sidebar #content-list.tutorial .level-0 { +  text-indent: 0; +} + +  #content-list {    background: #fff;    padding: 1em 0.4em 1em 2em; -  margin: 0.95em -1em -1em -0.6em; +  margin: 0.95em -0.95em -1em -0.6em;    line-height: 1.5em;  } diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html index cdd04e1d..63b02573 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -56,7 +56,7 @@        <input type="text" name="search" id="search-box" placeholder="search the docs"               tabindex="1" accesskey="s"> -      <ul id="content-list"> +      <ul id="content-list" ng:class="sectionId">          <li ng:repeat="page in pages.$filter(search)" ng:class="getClass(page)">            <a href="{{getUrl(page)}}" ng:class="selectedPartial(page)"               ng:bind="page.shortName" | 
