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

content / browser / resources / quota / quota_internals.css [blame]

/* Copyright 2021 The Chromium Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

button {
  background-color: powderblue;
  border: .5px solid black;
  border-radius: 2px;
  font-size: 12px;
  font-weight: bold;
  padding: 2px;
  text-align: center;
  text-decoration: none;
}
label {
  font-size: 12px;
}
table {
  border: 1px solid black;
  border-collapse: collapse;
}
tbody {
  background-color: white;
}
td {
  border: 1px solid black;
  padding: 5px;
}
th {
  background-color: powderblue;
  border: 1px solid black;
  padding: 5px;
}
.available-space {
  text-align: center;
}
.disk-availability-table {
  width: 30%
}
.eviction-statistics-table {
  width: 60%;
}
.eviction-statistics-table th {
  width: 15%;
}
.eviction-tr {
  text-align: center;
}
.test-storage-pressure-header {
  border-top: 1px solid grey;
  margin-top: 10px;
  padding-top: 5px;
}
.total-space {
  text-align: center;
}
#simulate-storage-pressure-activation-message {
  color: red;
}