Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 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. | |
|
Dan Beam
2012/05/29 21:25:50
optional nit: in general I prefer not letting this
Robert Toscano
2012/05/29 22:17:36
Done.
| |
| 4 */ | |
| 5 | |
| 6 .destination-list-item { | |
| 7 -webkit-transition: background-color 150ms; | |
| 8 cursor: default; | |
| 9 padding: 3px 2px 3px 18px; | |
|
Dan Beam
2012/05/29 21:25:50
does this work in RTL? seems like you'd wanna do:
Robert Toscano
2012/05/29 22:17:36
There are a few other things that need to change.
Dan Beam
2012/05/29 22:30:18
Supporting RTL means having a reasonable look in r
Robert Toscano
2012/05/30 21:08:00
Done.
| |
| 10 } | |
| 11 | |
| 12 .destination-list-item:hover { | |
| 13 background-color: rgb(228, 236, 247); | |
| 14 } | |
| 15 | |
| 16 .destination-list-item-icon { | |
| 17 -webkit-transition: opacity 150ms; | |
| 18 display: inline-block; | |
| 19 height: 24px; | |
| 20 margin-right: 8px; | |
|
Dan Beam
2012/05/29 21:25:50
same question about RTL
Robert Toscano
2012/05/30 21:08:00
Done.
| |
| 21 opacity: .4; | |
|
Dan Beam
2012/05/29 21:25:50
optional nit: I don't think we have an explicit ru
Robert Toscano
2012/05/29 22:17:36
It looks like its not entirely consistent. I've fo
Dan Beam
2012/05/29 23:36:09
I'd argue that 90% of these values being [0-9]\.[0
Robert Toscano
2012/05/30 21:08:00
Done.
| |
| 22 vertical-align: middle; | |
| 23 width: 24px; | |
| 24 } | |
| 25 | |
| 26 .destination-list-item:hover .destination-list-item-icon { | |
| 27 opacity: 1; | |
| 28 } | |
| 29 | |
| 30 .destination-list-item-name { | |
| 31 vertical-align: middle; | |
| 32 } | |
| OLD | NEW |