OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <!-- | 3 <!-- |
4 | 4 |
5 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 5 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
6 Use of this source code is governed by a BSD-style license that can be | 6 Use of this source code is governed by a BSD-style license that can be |
7 found in the LICENSE file. | 7 found in the LICENSE file. |
8 --> | 8 --> |
9 <head> | 9 <head> |
10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
11 <link rel="stylesheet" href="css/items.css"> | |
12 <link rel="stylesheet" href="../../../../ui/webui/resources/css/chrome_share
d.css"> | 11 <link rel="stylesheet" href="../../../../ui/webui/resources/css/chrome_share
d.css"> |
13 <link rel="stylesheet" href="css/pack_item_overlay.css"> | |
14 <link rel="stylesheet" href="../../../../ui/webui/resources/css/alert_overla
y.css"> | 12 <link rel="stylesheet" href="../../../../ui/webui/resources/css/alert_overla
y.css"> |
15 <link rel="stylesheet" href="../../../../ui/webui/resources/css/tabs.css"> | 13 <link rel="stylesheet" href="../../../../ui/webui/resources/css/tabs.css"> |
16 <link rel="stylesheet" href="../../../../ui/webui/resources/css/overlay.css"
> | 14 <link rel="stylesheet" href="../../../../ui/webui/resources/css/overlay.css"
> |
17 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> | 15 <link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css"> |
18 <link rel="stylesheet" href="../uber/uber_shared.css"> | 16 <link rel="stylesheet" href="../uber/uber_shared.css"> |
| 17 <link rel="stylesheet" href="css/pack_item_overlay.css"> |
| 18 <link rel="stylesheet" href="css/items.css"> |
19 | 19 |
20 <script src="js/main_scripts.js"></script> | 20 <script src="js/main_scripts.js"></script> |
21 </head> | 21 </head> |
22 <body> | 22 <body> |
23 <div id="overlay" class="overlay" hidden> | 23 <div id="overlay" class="overlay" hidden> |
24 <include src="pack_item_overlay.html"> | 24 <include src="pack_item_overlay.html"> |
25 <include src="../../../../ui/webui/resources/html/alert_overlay.html"> | 25 <include src="../../../../ui/webui/resources/html/alert_overlay.html"> |
26 </div> | 26 </div> |
27 <div class="page" id="extension-settings"> | 27 <div class="page" id="extension-settings"> |
28 <h1 i18n-content="appsDevtoolTitle"></h1> | |
29 <tabbox id="tab-box"> | 28 <tabbox id="tab-box"> |
30 <tabs id="tabs"> | 29 <div id="header"> |
31 <tab i18n-content="appsDevtoolApps"></tab> | 30 <div id="developer-controls"> |
32 <tab i18n-content="appsDevtoolExtensions"></tab> | 31 <button id="load-unpacked" |
33 </tabs> | 32 i18n-content="appsDevtoolLoadUnpackedButton"></button> |
34 <div id="developer-controls"> | 33 <button id="pack-item" i18n-content="appsDevtoolPackButton"> |
35 <button id="load-unpacked" | 34 </button> |
36 i18n-content="appsDevtoolLoadUnpackedButton"></button> | 35 <button id="update-items-now" |
37 <button id="pack-item" | 36 i18n-content="appsDevtoolUpdateButton"> |
38 i18n-content="appsDevtoolPackButton"></button> | 37 </button> |
39 <button id= "update-items-now" | 38 <h1 id="header-title" i18n-content="appsDevtoolTitle"></h1> |
40 i18n-content="appsDevtoolUpdateButton"></button> | 39 <input id="search" type="text" |
41 <input id="search" type="text" | 40 i18n-values=".placeholder:appsDevtoolSearch" spellcheck="false"> |
42 i18n-values=".placeholder:appsDevtoolSearch" spellcheck="false"> | 41 </div> |
43 <hr> | 42 <div id="tabs-header-container"> |
| 43 <tabs id="tabs" tabindex="0"> |
| 44 <tab i18n-content="appsDevtoolApps"></tab> |
| 45 <tab i18n-content="appsDevtoolExtensions"></tab> |
| 46 </tabs> |
| 47 </div> |
| 48 <div id="header-bottom-gradient"></div> |
44 </div> | 49 </div> |
45 <tabpanels id="tab-panels"> | 50 <tabpanels id="tab-panels"> |
46 <!-- Apps Tab --> | 51 <!-- Apps Tab --> |
47 <tabpanel id="apps-tab"> | 52 <tabpanel id="apps-tab"> |
48 <div id="app-settings-list" class="empty-extension-list"> | 53 <div id="app-settings-list" class="empty-extension-list"> |
49 </div> | 54 </div> |
50 <div id="no-apps"> | 55 <div id="no-apps"> |
51 <span id="no-apps-message" | 56 <span id="no-apps-message" |
52 i18n-content="appsDevtoolNoApps"></span> | 57 i18n-content="appsDevtoolNoApps"></span> |
53 </div> | 58 </div> |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 </label> | 147 </label> |
143 <span class="location-text"></span> | 148 <span class="location-text"></span> |
144 </div> | 149 </div> |
145 </div> | 150 </div> |
146 </div> | 151 </div> |
147 </div> | 152 </div> |
148 <include src="../../../../ui/webui/resources/html/trash.html"> | 153 <include src="../../../../ui/webui/resources/html/trash.html"> |
149 </div> | 154 </div> |
150 </body> | 155 </body> |
151 </html> | 156 </html> |
OLD | NEW |