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

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

Issue 11555033: Adding local html page used in Instant Extended mode when instant is disabled or unavailable. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Addressing samarth's and sky's comments. Created 8 years 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: #EFEFEF;
7 cursor: default;
8 margin: 0;
9 overflow: hidden;
10 }
11
12 .rid {
13 display: none
14 }
15
16 .suggestion {
17 font: 16px arial;
18 line-height: 20px;
19 margin-left: 91px;
Evan Stade 2012/12/14 01:09:25 ditto about -webkit-margin-start
Shishir 2012/12/14 03:46:52 Done.
20 padding-bottom: 6px;
21 padding-top: 6px;
22 }
23
24 .contents {
25 -webkit-padding-start: 29px
26 }
27
28 .selected {
29 background-color: rgb(217, 228, 247);
30 }
31
32 .clock {
33 -webkit-margin-start: 5px;
34 background-image: -webkit-image-set(
35 url('images/history_icon.png') 1x,
36 url('images/2x/history_icon.png') 2x);
37 height: 19px;
38 margin-bottom: 2px;
39 position: absolute;
40 width: 19px;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698