/* Copyright 2011 Google Inc.  All Rights Reserved.
 *
 * Provides the CSS styling for the streamz servlet (by default found at
 * /streamz).
 *
 * Author: adonovan@google.com (Alan Donovan)
 */

/* Header, body */
body {
  font-family: Verdana;
}
h1 {
  font-size: 15pt;
  background: #ddddff; /* light blue */
  padding: 6px;
}

/* Tables */
.jstable>table {
  border: thin solid black;
  border-collapse: collapse;
  padding: 0px;
  margin: 0;
}
.jstable>table>tbody>tr>td {
  border: thin solid black;
  padding: 4px;
  margin: 0;
  vertical-align: top;
}
.jstable>table>tbody>tr>th {
  border: thin solid black;
  background: #eeeeff; /* very light blue */
  padding: 4px;
  margin: 0;
}
.type {
  color: grey;
}
.dir {
  font-weight: bold;
}
a:visited {
  color: blue;
}
.type a {
  color: grey;
}
.age {
  color: grey;
  font-size: 75%;
}

/* Roots and metrics */
pre.inline {
  display:inline;
  margin-top: 0px;
}
.root_label {
  text-indent: 5px;
  display:inline-block;
}
.metric-description {
  font-size: 100%;
}

/* This image is a question mark with a circle around it. */
.metric-description a {
  background-image: url(data:image/gif;base64,R0lGODlhDQAOAMQAAPn5+eX2+dru9N7t79js7tXp7djo6cnh48jf4sHa3LzW5bzV2bLN0afH2pCyt5Gyt3+nxmCQt////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEHABIALAAAAAANAA4AAAVLoCRKTlmOYwms6yk6ayDLQOG8QKBEvBAcN5gs0ghAIrJEaTALCI4yRskwE/BmUgdidsWWFs2wlEQYIqM3EoMhHr8c67gLZZqj7vcQADs=);
  background-repeat: no-repeat;
  padding-right: 18px;
  background-position: right;
  background-size:13px 14px;
}

/* Metadata */
.metadata-deprecated:link {
  color: gray;
}
.metadata-deprecated:visited {
  color: gray;
}
.metadata-public:visited {
  color: green;
}
.metadata-public:link {
  color: green;
}

/* Data */
.cell_value {
  font-family: monospace;
  font-size: 120%;
}

/* Other metadata: Root labels and Discovery information */
#root_label_list {
  padding: 0px;
  margin: 0px;
  padding-top:0.5em
}
#discovery_list {
  padding: 0px;
  margin: 0px;
  padding-top:0.5em
}
