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

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

Issue 2760753002: [CUPS] Implement the local CUPS printer setup waiting UI. (Closed)
Patch Set: Address dpapad@'s comments. Created 3 years, 8 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 91
92 .extension-icon { 92 .extension-icon {
93 background-position: center; 93 background-position: center;
94 background-repeat: no-repeat; 94 background-repeat: no-repeat;
95 cursor: pointer; 95 cursor: pointer;
96 flex: 0 0 auto; 96 flex: 0 0 auto;
97 height: 24px; 97 height: 24px;
98 margin: 0 3px; 98 margin: 0 3px;
99 width: 24px; 99 width: 24px;
100 } 100 }
101
102 .configuring-in-progress-text,
103 .configuring-failed-text {
104 -webkit-margin-start: 1em;
105 flex: 0 1 auto;
106 line-height: 24px;
107 vertical-align: middle;
108 }
109
110 .configuring-failed-text {
111 color: red;
112 font-style: italic;
113 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698