Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Side by Side Diff: chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.css

Issue 13905008: Merge local_omnibox_popup into local_ntp. Render the Google logo and fakebox if Google is the sear… (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Fix suggestion truncation. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/local_ntp/local_ntp.js ('k') | chrome/browser/resources/local_omnibox_popup/local_omnibox_popup.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698