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

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

Issue 12693022: Added separate tabs for apps / extensions in dev_tools app. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: . Created 7 years, 8 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 c86f3b9f5c9170084ac36f78bff8fa882f30db82..6fa609bc80098e713a39bc69a1ca3b244c8bcdcf 100644
--- a/chrome/browser/resources/apps_debugger/css/items.css
+++ b/chrome/browser/resources/apps_debugger/css/items.css
@@ -12,7 +12,7 @@ html {
hr {
color: rgb(115, 111, 110);
- margin: 10px 0 10px;
+ margin: 15px 0;
}
/* Contents */
@@ -22,18 +22,18 @@ hr {
max-width: 800px;
}
-#no-extensions-message {
+#no-extensions-message,
+#no-apps-message {
font-weight: bold;
}
-.empty-extension-list {
+.empty-item-list {
height: 3em;
}
#developer-controls {
- bottom: 15px;
+ margin-top: 15px;
max-width: 750px;
- top: 15px;
}
#search {
@@ -44,18 +44,21 @@ html[dir='rtl'] #search {
float: left;
}
-#no-extensions {
+#no-extensions,
+#no-apps {
margin: 10px 10px;
}
.loading #no-extensions,
-#extension-settings-list:not(.empty-extension-list) ~ #no-extensions,
-.empty-extension-list {
+.loading #no-apps,
+#extension-settings-list:not(.empty-item-list) ~ #no-extensions,
+#app-settings-list:not(.empty-item-list) ~ #no-apps,
+.empty-item-list {
display: none;
}
.extension-list-item-wrapper {
- margin: 23px 0;
+ margin: 30px 0;
}
.extension-list-item {
@@ -112,7 +115,7 @@ html[dir='rtl'] .extension-list-item {
}
.active-views {
- margin: 4px;
+ margin-top: 15px;
}
.site-link {
@@ -130,14 +133,9 @@ html[dir='rtl'] .enable-control {
.file-access-control,
.incognito-control {
+ left: 0;
position: relative;
- right: 0.5em;
-}
-
-html[dir='rtl'] .file-access-control,
-html[dir='rtl'] .incognito-control {
- left: 0.5em;
- right: auto;
+ right: 0;
}
.enable-checkbox-text {
@@ -164,6 +162,10 @@ html[dir='rtl'] .incognito-control {
word-wrap: break-word;
}
+.load-path {
+ margin-top: 15px;
+}
+
.terminated-reload-link {
-webkit-margin-end: 2.5em;
padding-top: 7px;
@@ -179,6 +181,14 @@ html[dir='rtl'] .incognito-control {
-webkit-margin-start: 0;
}
+#tabs {
+ background: none;
+}
+
+#tab-panels {
+ box-shadow: none;
+}
+
/* Overlays */
#overlay {
@@ -230,6 +240,10 @@ html[dir='rtl'] #extension-settings .trash {
display: none;
}
+.optional-controls {
+ margin-top: 15px;
+}
+
a {
color: rgb(17, 85, 204);
text-decoration: underline;

Powered by Google App Engine
This is Rietveld 408576698