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

Side by Side Diff: chrome/browser/resources/print_preview/settings/destination_settings.css

Issue 150943006: Show destination offline status in the print preview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 6 years, 10 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 | Annotate | Revision Log
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-settings h1 { 5 #destination-settings h1 {
6 padding-top: 20px; 6 padding-top: 20px;
7 vertical-align: top; 7 vertical-align: top;
8 } 8 }
9 9
10 #destination-settings .throbber { 10 #destination-settings .throbber {
11 display: block; 11 display: block;
12 margin-bottom: 14px; 12 margin-bottom: 14px;
13 margin-top: 8px; 13 margin-top: 8px;
14 } 14 }
15 15
16 #destination-settings .destination-settings-box { 16 #destination-settings .destination-settings-box {
17 -webkit-box-align: center; 17 -webkit-box-align: center;
18 display: -webkit-box; 18 display: -webkit-box;
19 height: 29px; 19 height: 29px;
20 margin-bottom: 10px; 20 margin-bottom: 10px;
21 } 21 }
22 22
23 .destination-settings-box.stale {
24 opacity: 0.4;
25 }
26
23 #destination-settings .destination-settings-change-button { 27 #destination-settings .destination-settings-change-button {
24 margin-bottom: 10px; 28 margin-bottom: 10px;
25 } 29 }
26 30
27 .destination-settings-icon { 31 .destination-settings-icon {
28 -webkit-margin-end: 8px; 32 -webkit-margin-end: 8px;
29 height: 24px; 33 height: 24px;
30 vertical-align: middle; 34 vertical-align: middle;
31 width: 24px; 35 width: 24px;
32 } 36 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 font-size: 110%; 73 font-size: 110%;
70 overflow: hidden; 74 overflow: hidden;
71 text-overflow: ellipsis; 75 text-overflow: ellipsis;
72 } 76 }
73 77
74 .destination-settings-location { 78 .destination-settings-location {
75 opacity: 0.4; 79 opacity: 0.4;
76 overflow: hidden; 80 overflow: hidden;
77 text-overflow: ellipsis; 81 text-overflow: ellipsis;
78 } 82 }
83
84 .destination-settings-offline-status {
85 overflow: hidden;
86 text-overflow: ellipsis;
87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698