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

Unified Diff: chrome/browser/resources/apps_debugger/css/items.css

Issue 15810003: App Developer Tools: Implemented separate tabs for unpacked apps and extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@242747-appdevtools-ux
Patch Set: Feedback from grv. 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/css/items.css
diff --git a/chrome/browser/resources/apps_debugger/css/items.css b/chrome/browser/resources/apps_debugger/css/items.css
index 5a483aad419b9ef9e162a65e73da9166f6a5ff39..8728d2625e69b483d309ca4ebcaa6d9cfa21dd77 100644
--- a/chrome/browser/resources/apps_debugger/css/items.css
+++ b/chrome/browser/resources/apps_debugger/css/items.css
@@ -119,7 +119,8 @@ tabpanel {
}
#no-extensions-message,
-#no-apps-message {
+#no-apps-message,
+#no-unpacked-message {
font-weight: bold;
}
@@ -132,14 +133,17 @@ html[dir='rtl'] #search {
}
#no-extensions,
-#no-apps {
- margin: 10px 10px;
+#no-apps,
+#no-unpacked {
+ margin: 10px;
}
.loading #no-extensions,
.loading #no-apps,
-#extension-settings-list:not(.empty-item-list) ~ #no-extensions,
-#app-settings-list:not(.empty-item-list) ~ #no-apps,
+.loading #no-unpacked,
+#packed-extension-list:not(.empty-item-list) ~ #no-extensions,
+#packed-app-list:not(.empty-item-list) ~ #no-apps,
+#unpacked-list:not(.empty-item-list) ~ #no-unpacked,
.empty-item-list {
display: none;
}

Powered by Google App Engine
This is Rietveld 408576698