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

Side by Side Diff: chrome/browser/resources/print_preview/search/destination_list_item.css

Issue 10450022: Print Preview Print Destination Search Widget (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address comments round 2 Created 8 years, 6 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 (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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698