OLD | NEW |
| (Empty) |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 | |
5 body { | |
6 font-family: Roboto; | |
7 } | |
8 | |
9 #downloads-toolbar { | |
10 background: rgb(63, 85, 102); | |
11 color: white; | |
12 } | |
13 | |
14 #search-term label { | |
15 color: rgba(255, 255, 255, .5); | |
16 } | |
17 | |
18 #search-term .label-is-highlighted label, | |
19 #search-term input { | |
20 color: white; | |
21 } | |
22 | |
23 #search-term .unfocused-line { | |
24 background-color: rgba(255, 255, 255, .5); | |
25 } | |
26 | |
27 #search-term .focused-line { | |
28 background-color: white; | |
29 } | |
OLD | NEW |