1/* 2 * Copyright 2013 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 7#log-level-container { 8 margin: 5px; 9} 10 11#log-level-container label { 12 vertical-align: middle; 13} 14 15#log-level-container input { 16 margin-bottom: 1px; 17 vertical-align: middle; 18} 19 20#network-log-container { 21 border: 1px solid rgb(220, 220, 220); 22 font-size: 12px; 23 height: 350px; 24 overflow: scroll; 25 padding: 10px; 26 width: 100%; 27} 28 29#network-log-container p { 30 font-family: monospace; 31 line-height: 20px; 32 margin: 2px; 33} 34 35#network-status-table { 36 border-collapse: collapse; 37} 38 39#network-status-table tr td { 40 border: 1px solid rgb(220, 220, 220); 41 font-size: 13px; 42} 43 44.network-status-table-header { 45 font-weight: bold; 46} 47 48.network-level-tag { 49 -webkit-margin-end: 5px; 50 border: 1px solid; 51 border-radius: 2px; 52 padding: 0 4px; 53} 54 55.network-log-level-event { 56 color: orange; 57} 58 59.network-log-level-error { 60 color: red; 61} 62 63.network-log-level-debug { 64 color: blue; 65} 66