Home | History | Annotate | Download | only in gpu_internals
      1 /*
      2 Copyright (c) 2011 The Chromium Authors. All rights reserved.
      3 Use of this source code is governed by a BSD-style license that can be
      4 found in the LICENSE file.
      5 */
      6 #profiling-view {
      7   padding: 0px;
      8   -webkit-box-orient: vertical;
      9   -webkit-box-flex: 1;
     10 }
     11 
     12 #profiling-view[selected] {
     13   display: -webkit-box;
     14 }
     15 
     16 #profiling-view > .control {
     17   display: -webkit-box;
     18   overflow: auto;
     19 }
     20 
     21 #profiling-view > .container {
     22   display: -webkit-box;
     23   -webkit-box-flex: 1;
     24   overflow: auto;
     25 }
     26 
     27 .profiling-overlay {
     28   display: -webkit-box;
     29   -webkit-box-orient: vertical;
     30   text-align: center;
     31 }
     32 
     33 .profiling-overlay .raw-text {
     34   overflow: auto;
     35   -webkit-box-flex: 1;
     36   wrap: none;
     37 }
     38 
     39 .profiling-overlay .error {
     40   border: 1px solid red;
     41   text-align: center;
     42 }
     43