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

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

Issue 979303002: Update UI for extension destinations in print preview destination list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 9 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
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 .destination-list-item { 5 .destination-list-item {
6 -webkit-padding-end: 2px; 6 -webkit-padding-end: 2px;
7 -webkit-padding-start: 18px; 7 -webkit-padding-start: 18px;
8 cursor: default; 8 cursor: default;
9 padding-bottom: 3px; 9 padding-bottom: 3px;
10 padding-top: 3px; 10 padding-top: 3px;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 65 }
66 66
67 .register-promo { 67 .register-promo {
68 -webkit-margin-start: 1em; 68 -webkit-margin-start: 1em;
69 flex: 0 0 auto; 69 flex: 0 0 auto;
70 } 70 }
71 71
72 .destination-list-item-query-highlight { 72 .destination-list-item-query-highlight {
73 background-color: rgba(255, 240, 120, 0.9); 73 background-color: rgba(255, 240, 120, 0.9);
74 } 74 }
75
76 .extension-controlled-indicator {
77 display: flex;
78 flex: 1;
79 justify-content: flex-end;
80 min-width: 150px;
81 }
82
83 .extension-name {
84 -webkit-margin-start: 1em;
85 color: #999;
86 line-height: 24px;
87 overflow: hidden;
88 text-overflow: ellipsis;
89 white-space: nowrap;
90 }
91
92 .extension-icon {
93 background-position: center;
94 background-repeat: no-repeat;
95 cursor: pointer;
96 flex: 0 0 auto;
97 height: 24px;
98 margin: 0 3px;
99 width: 24px;
100 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698