blob: 6d4ce43dab7e4a4756c6f65cd531cd7d991702f5 [file] [log] [blame] [edit]
/* 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. */
* {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
ul {
padding-left: 2em;
}
/* This class is used to create the splitter widget in
ResizbleVerticalSplitView */
.vertical-splitter {
background: #bfbfbf;
border-left: 1px inset black;
border-right: 1px solid black;
cursor: col-resize;
position: absolute;
user-select: none;
width: 8px;
}
/* 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 margin, and makes them scrollable.
*/
.content-box {
overflow: auto;
padding: 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: red;
}