| 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; | 6 margin: 10px; |
| 7 <if expr="not pp_ifdef('android')"> | 7 <if expr="not pp_ifdef('android')"> |
| 8 min-width: 47em; | 8 min-width: 47em; |
| 9 </if> | 9 </if> |
| 10 /* Should match needs-restart.height + 5 */ | 10 /* Should match needs-restart.height + 5 */ |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 color: red; | 56 color: red; |
| 57 font-weight: bold; | 57 font-weight: bold; |
| 58 } | 58 } |
| 59 | 59 |
| 60 div.content { | 60 div.content { |
| 61 font-size: 88%; | 61 font-size: 88%; |
| 62 margin-top: 5px; | 62 margin-top: 5px; |
| 63 } | 63 } |
| 64 | 64 |
| 65 .section-header { | 65 .section-header { |
| 66 -webkit-padding-start: 5px; | |
| 67 background: rgb(235, 239, 249); | 66 background: rgb(235, 239, 249); |
| 68 border-top: 1px solid rgb(181, 199, 222); | 67 border-top: 1px solid rgb(181, 199, 222); |
| 69 font-size: 99%; | 68 font-size: 99%; |
| 70 padding-bottom: 2px; | 69 padding: 2px 5px 3px; |
| 71 padding-top: 3px; | |
| 72 width: 100%; | 70 width: 100%; |
| 73 } | 71 } |
| 74 | 72 |
| 75 .section-header > table tr td:first-child { | 73 .section-header > table tr td:first-child { |
| 76 width: 100%; | 74 width: 100%; |
| 77 } | 75 } |
| 78 | 76 |
| 79 .section-header > table { | 77 .section-header > table { |
| 80 width: 100%; | 78 width: 100%; |
| 81 } | 79 } |
| 82 | 80 |
| 83 .section-header-title { | 81 .section-header-title { |
| 84 font-weight: bold; | 82 font-weight: bold; |
| 83 line-height: 200%; |
| 84 } |
| 85 |
| 86 #experiment-reset-all { |
| 87 float: right; |
| 88 } |
| 89 |
| 90 html[dir=rtl] #experiment-reset-all { |
| 91 float: left; |
| 85 } | 92 } |
| 86 | 93 |
| 87 .vbox-container { | 94 .vbox-container { |
| 88 -webkit-box-orient: vertical; | 95 -webkit-box-orient: vertical; |
| 89 display: -webkit-box; | 96 display: -webkit-box; |
| 90 } | 97 } |
| 91 | 98 |
| 92 .wbox { | 99 .wbox { |
| 93 -webkit-box-align: stretch; | 100 -webkit-box-align: stretch; |
| 94 -webkit-box-flex: 1; | 101 -webkit-box-flex: 1; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 padding-right: 15px; | 164 padding-right: 15px; |
| 158 padding-top: 15px; | 165 padding-top: 15px; |
| 159 position: fixed; | 166 position: fixed; |
| 160 width: 100%; | 167 width: 100%; |
| 161 } | 168 } |
| 162 | 169 |
| 163 button { | 170 button { |
| 164 font-size: 104%; | 171 font-size: 104%; |
| 165 } | 172 } |
| 166 | 173 |
| OLD | NEW |