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
6 /*
7  * TODO(rayraymond): Temporary placeholder for all the CSS that should
8  * be within the components of the individual views. Ultimately this
9  * CSS should live in its respective component.
10  */
11
12#top-bar-view {
13  border-bottom: 1px solid gray;
14  color: #fff;
15  display: -webkit-flex;
16  padding: 2px 2px 4px 7px;
17}
18
19#import-view-command-line,
20#import-view-user-comments {
21  /* Wrap long lines inside of PREs */
22  white-space: pre-wrap;
23}
24
25#import-view-load-status-text {
26  /* Wrap long lines inside of PREs */
27  white-space: pre-wrap;
28}
29
30.import-view-pending-log {
31  color: blue;
32  font-weight: bold;
33}
34
35.import-view-success-log {
36  color: green;
37  font-weight: bold;
38}
39
40.import-view-error-log {
41  color: #e00;
42  padding: 5px;
43  border: 1px solid #e00;
44}
45
46.import-view-warning-log {
47  color: #e00;
48}
49
50#proxy-view-tab-content td,
51#proxy-view-tab-content th {
52  font-size: 85%;
53}
54
55#proxy-view-socks-hints {
56  border: 1px solid orange;
57  padding: 1ex;
58}
59
60#proxy-view-socks-hints-flag {
61  margin: 1ex;
62}
63
64#prerender-view-history-table tr.used {
65  background-color: #F0FFF0;
66}
67
68#prerender-view-history-table tr:not(.used) {
69  background-color: #FFF0F0;
70}
71
72.modules-view-extension-list tr.enabled {
73  background-color: #F0FFF0;
74}
75
76.modules-view-extension-list tr:not(.enabled) {
77  background-color: #FFF0F0;
78}
79
80.data-reduction-proxy-view-events-details {
81  background-color: rgb(220,220,220);
82}
83table.borderless-table,
84.borderless-table th,
85.borderless-table td {
86  border: 0px;
87  padding-left: 4px;
88  padding-right: 4px;
89}