Chromium Code Reviews| 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 .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 } | |
| OLD | NEW |