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

Unified Diff: chrome/browser/resources/flags.css

Issue 8898039: Show all experiments, even those that are unavailable on the current platform (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: AddOsStrings as recommended by thakis Created 9 years 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/flags.css
diff --git a/chrome/browser/resources/flags.css b/chrome/browser/resources/flags.css
index f09c28619e5d4633adeb3654ac5cd3e1da6c3bb2..be639c70e92507ef543c6f3995fbfc389cda5a76 100644
--- a/chrome/browser/resources/flags.css
+++ b/chrome/browser/resources/flags.css
@@ -100,8 +100,18 @@ div.content {
-webkit-padding-end: 5px;
}
-/* Disabled experiments display grey text on a grey background. The title,
- however, should remain completely legible. */
+/* Disabled and unsupported experiments display grey text on a grey background.
+ The title, however, should remain legible. */
+
+.experiment-unsupported > td {
Nico 2011/12/17 03:34:27 I wonder if this should be .experiment-disabled >
Tyler Breisacher (Chromium) 2011/12/17 04:20:34 Sure, I don't see why not. If someone decides late
+ background: #F0F0F0;
+ color: #A0A0A0;
+}
+
+.experiment-unsupported .experiment-name {
+ color: #000;
+}
+
.experiment-disabled > td {
background: #F0F0F0;
color: #A0A0A0;

Powered by Google App Engine
This is Rietveld 408576698