summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals/status_view.css
blob: 8e7e76ae1a0f27b693722e26cf86de8b1bab5ae4 (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
/* 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.
 */

.capture-status-view {
  background: rgb(238, 0, 0);
}

.halted-status-view {
  background: rgb(0, 138, 0);
}

.loaded-status-view {
  background: rgb(113, 113, 171);
}

#capture-status-view {
  -webkit-align-items: center;
  display: -webkit-flex;
}

.capture-status-view-link,
.capture-status-view-link:visited,
.capture-status-view-link:active {
  color: white;
  text-decoration: none;
}

.capture-status-view-link:hover {
  color: white;
  text-decoration: underline;
}

/* Completely un-style the SELECT. Will place an arrow over it manually. */
#capture-status-view-actions {
  -webkit-appearance: none;
  background: none;
  border: none;
  height: 25px;
  outline: none;
  width: 30px;
}

.capture-status-view-arrow {
  display: inline-block;
  position: relative;
}

.capture-status-view-arrow::after {
  color: black;
  content: '\25bc';
  font-size: 9px;
  left: 0;
  line-height: 25px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}