summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals/main.css
blob: 822e40f957b89c3fab34b10fbcfc2d000d52c5d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Only common styles should be declared here. */

* {
  box-sizing: border-box;
}

ul {
  padding-left: 2em;
}

/* This class is used to create the splitter widget in
   ResizbleVerticalSplitView */
.vertical-splitter {
  -webkit-user-select: none;
  border-left: 1px solid #afafaf;
  cursor: ew-resize;
  position: absolute;
  width: 10px;
}

/* Needs to be wider on touch devices. */
.touch .vertical-splitter {
  width: 5mm;
}

.log-source-entry {
  margin: 5px;
}

.log-source-entry * p {
  font-size: 75%;
  font-weight: bold;
}

.log-source-entry * td {
  font-size: 62%;
}

/*
 * This class should be given to top-level content boxes (like the view's main
 * DIV). It gives them a consistent padding, and makes them scrollable.
 */
.content-box {
  overflow: auto;
  padding: 20px 10px 10px 20px;
}

.deindent-header,
.content-box h1,
.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  margin-left: -10px;
}

/*
 * Styles for TABLE that uses a thin collapsed border.
 */
table.styled-table {
  border-collapse: collapse;
}

table.styled-table,
.styled-table th,
.styled-table td {
  border: 1px solid #777;
  padding-left: 4px;
  padding-right: 4px;
}

.styled-table th {
  background: rgb(224,236,255);
}

.styled-table th.title {
  background: rgb(255,217,217);
}

/**
 * Styling for event logs.
 */
.event-log p {
  white-space: nowrap;
}

.event-log h4 {
  margin: 0;
}

.event-log a {
  font-weight: bold;
  text-decoration: none;
}

/**
 * Styling for text indicating a potential problem or error state.
 */
.warning-text {
  color: rgb(238, 0, 0);
}

/**
 * Styling for help windows that appear when mousing over an element.
 */
.mouse-over-help {
  background: #EEE;
  border: 1px solid black;
  font-size: 80%;
  padding: 5px;
  z-index: 1;
}

/**
 * Styling for elements that show a help window on mouse over.
 */
.mouse-over-help-hover {
  color: blue;
  cursor: help;
}