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

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: Make sure the proper patch will be applied. 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 63c6e34971863317be93b825e29d677a9c1d88d2..a67d3d6b5d90125563700684312342558f9b5935 100644
--- a/chrome/browser/resources/apps_debugger/css/items.css
+++ b/chrome/browser/resources/apps_debugger/css/items.css
@@ -120,7 +120,8 @@ html[dir='rtl'] #search {
}
#no-extensions-message,
-#no-apps-message {
+#no-apps-message,
+#no-unpacked-message {
font-weight: bold;
}
@@ -129,14 +130,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