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

Unified Diff: chrome/browser/resources/apps_debugger/main.html

Issue 15389003: Loosen a bit the HTML hierarchy required for Tabs to work, Improved UX of the dev tools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove 'mainThis'. Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/apps_debugger/main.html
diff --git a/chrome/browser/resources/apps_debugger/main.html b/chrome/browser/resources/apps_debugger/main.html
index e4d79fc414ff668721bf61f311a492cd20adb733..0c75a1e6cb66e39af33a0aa1dc910a93d5e848cd 100644
--- a/chrome/browser/resources/apps_debugger/main.html
+++ b/chrome/browser/resources/apps_debugger/main.html
@@ -8,14 +8,14 @@ found in the LICENSE file.
-->
<head>
<meta charset="utf-8">
- <link rel="stylesheet" href="css/items.css">
<link rel="stylesheet" href="../../../../ui/webui/resources/css/chrome_shared.css">
- <link rel="stylesheet" href="css/pack_item_overlay.css">
<link rel="stylesheet" href="../../../../ui/webui/resources/css/alert_overlay.css">
<link rel="stylesheet" href="../../../../ui/webui/resources/css/tabs.css">
<link rel="stylesheet" href="../../../../ui/webui/resources/css/overlay.css">
<link rel="stylesheet" href="../../../../ui/webui/resources/css/trash.css">
<link rel="stylesheet" href="../uber/uber_shared.css">
+ <link rel="stylesheet" href="css/pack_item_overlay.css">
+ <link rel="stylesheet" href="css/items.css">
<script src="js/main_scripts.js"></script>
</head>
@@ -25,22 +25,27 @@ found in the LICENSE file.
<include src="../../../../ui/webui/resources/html/alert_overlay.html">
</div>
<div class="page" id="extension-settings">
- <h1 i18n-content="appsDevtoolTitle"></h1>
<tabbox id="tab-box">
- <tabs id="tabs">
- <tab i18n-content="appsDevtoolApps"></tab>
- <tab i18n-content="appsDevtoolExtensions"></tab>
- </tabs>
- <div id="developer-controls">
- <button id="load-unpacked"
- i18n-content="appsDevtoolLoadUnpackedButton"></button>
- <button id="pack-item"
- i18n-content="appsDevtoolPackButton"></button>
- <button id= "update-items-now"
- i18n-content="appsDevtoolUpdateButton"></button>
- <input id="search" type="text"
- i18n-values=".placeholder:appsDevtoolSearch" spellcheck="false">
- <hr>
+ <div id="header">
+ <div id="developer-controls">
+ <button id="load-unpacked"
+ i18n-content="appsDevtoolLoadUnpackedButton"></button>
+ <button id="pack-item" i18n-content="appsDevtoolPackButton">
+ </button>
+ <button id="update-items-now"
+ i18n-content="appsDevtoolUpdateButton">
+ </button>
+ <h1 id="header-title" i18n-content="appsDevtoolTitle"></h1>
+ <input id="search" type="text"
+ i18n-values=".placeholder:appsDevtoolSearch" spellcheck="false">
+ </div>
+ <div id="tabs-header-container">
+ <tabs id="tabs" tabindex="0">
+ <tab i18n-content="appsDevtoolApps"></tab>
+ <tab i18n-content="appsDevtoolExtensions"></tab>
+ </tabs>
+ </div>
+ <div id="header-bottom-gradient"></div>
</div>
<tabpanels id="tab-panels">
<!-- Apps Tab -->

Powered by Google App Engine
This is Rietveld 408576698