Home | History | Annotate | Download | only in analysis
      1 /* Copyright (c) 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 
      6 .analysis-results {
      7   font-family: monospace;
      8   white-space: pre;
      9 }
     10 
     11 .analysis-results * {
     12   -webkit-user-select: text !important;
     13   cursor: text;
     14 }
     15 .analysis-table {
     16   border-collapse: collapse;
     17   border-width: 0;
     18   margin-bottom: 25px;
     19 }
     20 
     21 .analysis-table > tr > td:first-child {
     22   padding-left: 2px;
     23 }
     24 
     25 .analysis-table > tr > td {
     26   padding: 2px 4px 2px 4px;
     27 }
     28 
     29 .analysis-table-header {
     30   text-align: left;
     31 }
     32 
     33 .analysis-table-row {
     34   vertical-align: top;
     35 }
     36 
     37 .analysis-table-row:nth-child(2n+0) {
     38   background-color: #e2e2e2;
     39 }
     40 
     41 .selection-changing-link {
     42   color: -webkit-link;
     43   cursor: pointer;
     44   text-decoration: underline;
     45 }
     46