blob: 367845d6f3162ba2593bb7af35e1cd3f58999f79 (
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
|
/* Copyright 2015 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. */
body {
font-family: Roboto;
}
#downloads-toolbar {
background: rgb(63, 85, 102);
color: white;
}
#search-term label {
color: rgba(255, 255, 255, .5);
}
#search-term .label-is-highlighted label,
#search-term input {
color: white;
}
#search-term .unfocused-line {
background-color: rgba(255, 255, 255, .5);
}
#search-term .focused-line {
background-color: white;
}
|