| 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: #EFEFEF; |
| 7 cursor: default; |
| 8 margin: 0; |
| 9 overflow: hidden; |
| 10 } |
| 11 |
| 12 .restricted-id { |
| 13 display: none |
| 14 } |
| 15 |
| 16 .suggestion { |
| 17 -webkit-margin-start: 91px; |
| 18 font: 16px arial; |
| 19 line-height: 20px; |
| 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 } |
| OLD | NEW |