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

Side by Side Diff: chrome/browser/resources/extensions/extension_commands_overlay.html

Issue 10514003: Config UI for Extension Commands (part 1). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 months 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
1 <!-- 1 <!--
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be found 3 * Use of this source code is governed by a BSD-style license that can be found
4 * in the LICENSE file. 4 * in the LICENSE file.
5 --> 5 -->
6 <div id="extensionCommandsOverlay" class="page"> 6 <div id="extensionCommandsOverlay" class="page">
7 <h1 i18n-content="extensionCommandsOverlay"></h1> 7 <h1 i18n-content="extensionCommandsOverlay"></h1>
8 <div class="content-area"> 8 <div class="content-area">
9 <div id="extension-command-list" 9 <div id="extension-command-list"
10 class="empty-extension-commands-list"></div> 10 class="empty-extension-commands-list"></div>
(...skipping 20 matching lines...) Expand all
31 <div class="command-details"></div> 31 <div class="command-details"></div>
32 </div> 32 </div>
33 </div> 33 </div>
34 </div> 34 </div>
35 </div> 35 </div>
36 36
37 <div class="extension-command-list-command-item-wrapper"> 37 <div class="extension-command-list-command-item-wrapper">
38 <div class="extension-command-list-command-item"> 38 <div class="extension-command-list-command-item">
39 <div class="extension-command-details"> 39 <div class="extension-command-details">
40 <div> 40 <div>
41 <span class="command-description"></span> 41 <table>
Evan Stade 2012/06/05 00:20:37 don't use tables for layout.
Finnur 2012/06/05 15:04:46 Done.
42 <span class="command-shortcut"></span> 42 <tr>
43 <td class="left-column">
44 <span class="command-description"></span>
45 </td>
46 <td class="right-column">
47 <span class="command-shortcut clearable" tabindex="0"></span>
48 </td>
49 </tr>
50 </table>
43 </div> 51 </div>
44 </div> 52 </div>
45 </div> 53 </div>
46 </div> 54 </div>
47 </div> 55 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698