| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 body { | 5 body { |
| 6 margin: 10px 10px 0; | 6 margin: 10px 10px 0; |
| 7 <if expr="not is_android and not is_ios"> | 7 <if expr="not is_android and not is_ios"> |
| 8 min-width: 47em; | 8 min-width: 47em; |
| 9 </if> | 9 </if> |
| 10 /* Should be larger than the evaluated height of needs-restart. */ | 10 /* Should be larger than the evaluated height of needs-restart. */ |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 } | 136 } |
| 137 | 137 |
| 138 .experiment-name { | 138 .experiment-name { |
| 139 font-weight: bold; | 139 font-weight: bold; |
| 140 } | 140 } |
| 141 | 141 |
| 142 .referenced .experiment-name { | 142 .referenced .experiment-name { |
| 143 background-color: rgb(255, 255, 0); | 143 background-color: rgb(255, 255, 0); |
| 144 } | 144 } |
| 145 | 145 |
| 146 .no-experiments { | |
| 147 font-size: 1.2em; | |
| 148 margin: 6em 0; | |
| 149 text-align: center; | |
| 150 } | |
| 151 | |
| 152 /* Match the indentation of .experiment-text. */ | 146 /* Match the indentation of .experiment-text. */ |
| 153 .experiment-actions { | 147 .experiment-actions { |
| 154 -webkit-padding-start: 5px; | 148 -webkit-padding-start: 5px; |
| 155 margin-bottom: 0.2em; | 149 margin-bottom: 0.2em; |
| 156 margin-top: 0.2em; | 150 margin-top: 0.2em; |
| 157 } | 151 } |
| 158 | 152 |
| 159 div.needs-restart { | 153 div.needs-restart { |
| 160 /* If you modify properties that change the height of this, | 154 /* If you modify properties that change the height of this, |
| 161 * update body.padding-bottom. */ | 155 * update body.padding-bottom. */ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 185 margin-top: 10px; | 179 margin-top: 10px; |
| 186 padding: 10px 24px; | 180 padding: 10px 24px; |
| 187 text-transform: uppercase; | 181 text-transform: uppercase; |
| 188 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); | 182 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); |
| 189 } | 183 } |
| 190 | 184 |
| 191 button { | 185 button { |
| 192 font-size: 104%; | 186 font-size: 104%; |
| 193 } | 187 } |
| 194 | 188 |
| OLD | NEW |