| OLD | NEW |
| 1 /* | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 * 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 | 3 * found in the LICENSE file. */ |
| 4 found in the LICENSE file. | 4 |
| 5 */ | |
| 6 #info-view { | 5 #info-view { |
| 6 -webkit-box-flex: 1; |
| 7 overflow: auto; |
| 7 padding: 10px; | 8 padding: 10px; |
| 8 overflow: auto; | |
| 9 -webkit-box-flex: 1; | |
| 10 } | 9 } |
| 10 |
| 11 #info-view * { | 11 #info-view * { |
| 12 -webkit-user-select: text; | 12 -webkit-user-select: text; |
| 13 } | 13 } |
| 14 | 14 |
| 15 #info-view[selected] { | 15 #info-view[selected] { |
| 16 -webkit-box-orient: vertical; |
| 16 display: -webkit-box; | 17 display: -webkit-box; |
| 17 -webkit-box-orient: vertical; | |
| 18 } | 18 } |
| 19 | 19 |
| 20 #info-view h3, | 20 #info-view h3, |
| 21 #info-view ul { | 21 #info-view ul { |
| 22 -webkit-margin-after: 0; |
| 22 -webkit-margin-before: 0; | 23 -webkit-margin-before: 0; |
| 23 -webkit-margin-after: 0; | |
| 24 } | 24 } |
| 25 |
| 25 #info-view > div { | 26 #info-view > div { |
| 26 -webkit-margin-after: 1em; | 27 -webkit-margin-after: 1em; |
| 27 } | 28 } |
| 28 | 29 |
| 29 #info-view .row-title { | 30 #info-view .row-title { |
| 30 font-weight: bold; | 31 font-weight: bold; |
| 31 } | 32 } |
| 32 | 33 |
| 33 #info-view table { | 34 #info-view table { |
| 35 border-collapse: collapse; |
| 34 cursor: text; | 36 cursor: text; |
| 35 border-collapse: collapse; | |
| 36 } | 37 } |
| 37 | 38 |
| 38 #info-view table, | 39 #info-view table, |
| 39 #info-view th, | 40 #info-view th, |
| 40 #info-view td { | 41 #info-view td { |
| 41 border: 1px solid #777; | 42 border: 1px solid #777; |
| 43 padding-left: 4px; |
| 42 padding-right: 4px; | 44 padding-right: 4px; |
| 43 padding-left: 4px; | |
| 44 text-align: top; | 45 text-align: top; |
| 45 } | 46 } |
| 46 | 47 |
| 47 #info-view .feature-green { | 48 #info-view .feature-green { |
| 48 color: rgb(0, 128, 0); | 49 color: rgb(0, 128, 0); |
| 49 } | 50 } |
| 50 | 51 |
| 51 #info-view .feature-yellow { | 52 #info-view .feature-yellow { |
| 52 color: rgb(128, 128, 0); | 53 color: rgb(128, 128, 0); |
| 53 } | 54 } |
| 54 | 55 |
| 55 #info-view .feature-red { | 56 #info-view .feature-red { |
| 56 color: rgb(255, 0, 0); | 57 color: rgb(255, 0, 0); |
| 57 } | 58 } |
| OLD | NEW |