cros: Remove default pinned apps trial.
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / main.css
blob822e40f957b89c3fab34b10fbcfc2d000d52c5d1
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 */
6 /* Only common styles should be declared here. */
8 * {
9 box-sizing: border-box;
12 ul {
13 padding-left: 2em;
16 /* This class is used to create the splitter widget in
17 ResizbleVerticalSplitView */
18 .vertical-splitter {
19 -webkit-user-select: none;
20 border-left: 1px solid #afafaf;
21 cursor: ew-resize;
22 position: absolute;
23 width: 10px;
26 /* Needs to be wider on touch devices. */
27 .touch .vertical-splitter {
28 width: 5mm;
31 .log-source-entry {
32 margin: 5px;
35 .log-source-entry * p {
36 font-size: 75%;
37 font-weight: bold;
40 .log-source-entry * td {
41 font-size: 62%;
45 * This class should be given to top-level content boxes (like the view's main
46 * DIV). It gives them a consistent padding, and makes them scrollable.
48 .content-box {
49 overflow: auto;
50 padding: 20px 10px 10px 20px;
53 .deindent-header,
54 .content-box h1,
55 .content-box h2,
56 .content-box h3,
57 .content-box h4,
58 .content-box h5,
59 .content-box h6 {
60 margin-left: -10px;
64 * Styles for TABLE that uses a thin collapsed border.
66 table.styled-table {
67 border-collapse: collapse;
70 table.styled-table,
71 .styled-table th,
72 .styled-table td {
73 border: 1px solid #777;
74 padding-left: 4px;
75 padding-right: 4px;
78 .styled-table th {
79 background: rgb(224,236,255);
82 .styled-table th.title {
83 background: rgb(255,217,217);
86 /**
87 * Styling for event logs.
89 .event-log p {
90 white-space: nowrap;
93 .event-log h4 {
94 margin: 0;
97 .event-log a {
98 font-weight: bold;
99 text-decoration: none;
103 * Styling for text indicating a potential problem or error state.
105 .warning-text {
106 color: rgb(238, 0, 0);
110 * Styling for help windows that appear when mousing over an element.
112 .mouse-over-help {
113 background: #EEE;
114 border: 1px solid black;
115 font-size: 80%;
116 padding: 5px;
117 z-index: 1;
121 * Styling for elements that show a help window on mouse over.
123 .mouse-over-help-hover {
124 color: blue;
125 cursor: help;