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

Unified Diff: chrome/browser/resources/gpu_internals/info_view.css

Issue 6712048: Implement easy GPU feature status summary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor tweak. Created 9 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/gpu_internals/info_view.css
diff --git a/chrome/browser/resources/gpu_internals/info_view.css b/chrome/browser/resources/gpu_internals/info_view.css
index c4cd6ca1130a82db2d5f7e3b2797ed1df6cfa5cd..a352578bd9d7a32c2253b55f9f76e7a85b17f2be 100644
--- a/chrome/browser/resources/gpu_internals/info_view.css
+++ b/chrome/browser/resources/gpu_internals/info_view.css
@@ -26,5 +26,17 @@ found in the LICENSE file.
border: 1px solid #777;
padding-right: 4px;
padding-left: 4px;
+ text-align: top;
}
+#info-view .feature-enabled {
+ color: rgb(0, 128, 0);
+}
+
+#info-view .feature-software {
+ color: rgb(128, 128, 0);
+}
+
+#info-view .feature-disabled {
+ color: rgb(255, 0, 0);
+}

Powered by Google App Engine
This is Rietveld 408576698