Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Side by Side Diff: chrome/common/extensions/docs/templates/private/fatnav.html

Issue 102593005: Clean patch with DCC static content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: bumped versions of cron and app, so running server won't update Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <nav id="fatnav" role="navigation">
2 <ul>
3 {{#i0:items}}
4 <li class="pillar">
5 <span class="toplevel">{{i0.title}}</span>
6 <ul class="expandee">
7 {{#l1:i0.items}}
8 <li class="submenu">{{l1.title}}
9 <ul>
10 {{?l1.items}}{{#l2:l1.items}}
11 <li class="category">
12 <a href="{{l2.href}}">{{l2.title}}</a>
13 <ul>
14 {{?l2.items}}{{#l3:l2.items}}
15 <li><a href="{{l3.href}}">{{l3.title}}</a>
16 </li>
17 {{/l2.items}}{{/l2.items}}
18 </ul>
19 </li>
20 {{/l1.items}}{{/l1.items}}
21 </ul>
22 </li>
23 {{/i0.items}}
24 </ul>
25 </li>
26 {{/items}}
27 <li id="search">
28 <img src="{{static}}/images/search.png">
29 <div class="expandee">
30
31 <!-- override search styles set globally by site.css -->
32 <style>
33 .gsc-above-wrapper-area, .gsc-result-info {
34 font-size: 11px;
35 }
36 .gs-webResult div, .gs-result div {
37 line-height: initial;
38 }
39 .gs-webResult a, .gs-result a {
40 text-decoration: none;
41 }
42 td.gcsc-branding-img-noclear, .gcsc-branding-img-noclear a {
43 width: 51px;
44 height: 15px;
45 vertical-align: top;
46 }
47 .gsc-table-result, .gsc-thumbnail-inside, .gsc-url-top {
48 padding: 0;
49 }
50 .gsc-control-cse tr, .gsc-control-cse td, .gsc-control-cse th {
51 padding: inherit;
52 border: none;
53 }
54 .gsc-control-cse {
55 white-space: normal;
56 border: none;
57 padding: 0 1em;
58 }
59 #search .gsc-control-cse img {
60 height: inherit;
61 width: inherit;
62 }
63 .gsc-control-cse table {
64 margin: initial;
65 }
66 .gsc-control-cse * {
67 box-sizing: initial;
68 -webkit-box-sizing: initial;
69 -moz-box-sizing: initial;
70 }
71 #fatnav .expandee .gsc-control-cse a {
72 padding: 0;
73 color: inherit;
74 }
75 </style>
76
77 <form id="chrome-docs-cse-search-form" action="http://google.com/cse">
78 <input type="search" id="chrome-docs-cse-input" name="q" placeholder="Wh at are you looking for?">
79 <input type="hidden" name="cx" value="010997258251033819707:7owyldxmpkc" />
80 <input type="hidden" name="ie" value="UTF-8" />
81 </form>
82 <gcse:searchresults-only gname="results"></gcse:searchresults-only>
83 </div>
84 </li>
85 </ul>
86 </nav>
87
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698