| OLD | NEW |
| (Empty) |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 #snapshot-view .process-id { | |
| 6 text-align: right; | |
| 7 width: 4em; | |
| 8 } | |
| 9 | |
| 10 #snapshot-view .process-info { | |
| 11 text-align: left; | |
| 12 } | |
| 13 | |
| 14 #snapshot-view dl { | |
| 15 margin: 0; | |
| 16 padding: 0; | |
| 17 } | |
| 18 | |
| 19 #snapshot-view dl dd { | |
| 20 margin-left: 1em; | |
| 21 } | |
| 22 | |
| 23 #snapshot-view .process-memory { | |
| 24 border-left: 1px solid rgb(181, 198, 222); | |
| 25 width: 13em; | |
| 26 } | |
| 27 | |
| 28 #snapshot-view .process-memory-private { | |
| 29 border-left: 1px solid rgb(181, 198, 222); | |
| 30 text-align: right; | |
| 31 width: 6em; | |
| 32 } | |
| 33 | |
| 34 #snapshot-view .process-memory-v8 { | |
| 35 text-align: right; | |
| 36 width: 7em; | |
| 37 } | |
| 38 | |
| 39 #process-template { | |
| 40 display: none; | |
| 41 } | |
| OLD | NEW |