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

Side by Side 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: Take out the raw text in the HTML 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 body { 7 body {
8 margin: 10px; 8 margin: 10px;
9 min-width: 47em; 9 min-width: 47em;
10 /* Should match needs-restart.(height + padding-top + padding-bottom + 5) */ 10 /* Should match needs-restart.(height + padding-top + padding-bottom + 5) */
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 .wbox { 93 .wbox {
94 display: -webkit-box; 94 display: -webkit-box;
95 -webkit-box-align: stretch; 95 -webkit-box-align: stretch;
96 -webkit-box-flex: 1; 96 -webkit-box-flex: 1;
97 } 97 }
98 98
99 #top { 99 #top {
100 -webkit-padding-end: 5px; 100 -webkit-padding-end: 5px;
101 } 101 }
102 102
103 /* Disabled experiments display grey text on a grey background. The title, 103 /* Disabled and unsupported experiments display grey text on a grey background.
104 however, should remain completely legible. */ 104 The title, however, should remain legible. */
105
106 .experiment-unsupported > td,
105 .experiment-disabled > td { 107 .experiment-disabled > td {
106 background: #F0F0F0; 108 background: #F0F0F0;
107 color: #A0A0A0; 109 color: #A0A0A0;
108 } 110 }
109 111
112 .experiment-unsupported .experiment-name,
110 .experiment-disabled .experiment-name { 113 .experiment-disabled .experiment-name {
111 color: #000; 114 color: #000;
112 } 115 }
113 116
114 .experiment { 117 .experiment {
115 border-bottom: 1px solid #cdcdcd; 118 border-bottom: 1px solid #cdcdcd;
116 } 119 }
117 120
118 .experiment td { 121 .experiment td {
119 padding-bottom: 4px; 122 padding-bottom: 4px;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 /* If you change this, update body.padding-bottom */ 158 /* If you change this, update body.padding-bottom */
156 padding-top: 15px; 159 padding-top: 15px;
157 position: fixed; 160 position: fixed;
158 width: 100%; 161 width: 100%;
159 } 162 }
160 163
161 button { 164 button {
162 font-size: 104%; 165 font-size: 104%;
163 } 166 }
164 167
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698