OLD | NEW |
| (Empty) |
1 /* Copyright 2012 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 background-color: white; | |
7 cursor: default; | |
8 margin: 0; | |
9 overflow: hidden; | |
10 } | |
11 | |
12 #suggestionsBox { | |
13 border-bottom: 1px #d9d9d9 solid; | |
14 display: inline-block; | |
15 padding-bottom: 6px; | |
16 padding-top: 6px; | |
17 } | |
18 | |
19 .suggestion { | |
20 -webkit-border-radius: 2px; | |
21 background: -webkit-image-set( | |
22 url('images/page_icon.png') 1x, | |
23 url('images/2x/page_icon.png') 2x) no-repeat; | |
24 padding-bottom: 2px; | |
25 padding-top: 3px; | |
26 white-space: nowrap; | |
27 } | |
28 | |
29 .search { | |
30 background: -webkit-image-set( | |
31 url('images/search_icon.png') 1x, | |
32 url('images/2x/search_icon.png') 2x) no-repeat; | |
33 } | |
34 | |
35 .suggestion:hover { | |
36 background-color: #eee; | |
37 } | |
38 | |
39 .selected, | |
40 .selected:hover { | |
41 background-color: rgba(181, 213, 255, 0.5); | |
42 } | |
43 | |
44 .contents { | |
45 -webkit-padding-start: 26px; | |
46 -webkit-user-select: none; | |
47 border: 0; | |
48 height: 22px; | |
49 overflow: hidden; | |
50 width: 100%; | |
51 } | |
52 | |
53 /* Styling for native suggestions, hidden by the shadow DOM. */ | |
54 .chrome_url { | |
55 color: rgb(0, 153, 51); | |
56 } | |
57 | |
58 .chrome_title { | |
59 color: #666; | |
60 } | |
OLD | NEW |