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