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 3 * found in the LICENSE file. */ 4 5.profiling-view { 6 -webkit-box-flex: 1; 7 -webkit-box-orient: vertical; 8 display: -webkit-box; 9 padding: 0; 10} 11 12.profiling-view > .container { 13 -webkit-box-flex: 1; 14 display: -webkit-box; 15} 16 17.profiling-overlay { 18 -webkit-box-orient: vertical; 19 display: -webkit-box; 20 text-align: center; 21} 22 23.profiling-overlay .raw-text { 24 -webkit-box-flex: 1; 25 overflow: auto; 26 wrap: none; 27} 28 29.profiling-overlay .error { 30 border: 1px solid red; 31 text-align: center; 32} 33