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

Side by Side Diff: chrome/browser/resources/md_downloads/item.css

Issue 1272933002: MD downloads: incorporate UX sync feedback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 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 :host { 5 :host {
6 @apply(--downloads-shared-style); 6 @apply(--downloads-shared-style);
7 display: flex; 7 display: flex;
8 margin: 32px 0; 8 margin: 32px 0;
9 } 9 }
10 10
(...skipping 14 matching lines...) Expand all
25 25
26 :host([hide-date]) #date-container { 26 :host([hide-date]) #date-container {
27 visibility: hidden; 27 visibility: hidden;
28 } 28 }
29 29
30 #content { 30 #content {
31 background: white; 31 background: white;
32 border-radius: 2px; /* TODO(dbeam): why does this differ from Polymer? */ 32 border-radius: 2px; /* TODO(dbeam): why does this differ from Polymer? */
33 display: flex; 33 display: flex;
34 flex: none; 34 flex: none;
35 min-height: 96px;
35 width: var(--downloads-item-width); 36 width: var(--downloads-item-width);
36 } 37 }
37 38
38 #content.no-file { 39 #content.no-file {
39 background: rgba(255, 255, 255, .5); 40 background: rgba(255, 255, 255, .5);
40 } 41 }
41 42
42 .no-file .icon-wrapper:not(#remove-wrapper), 43 .no-file .icon-wrapper:not(#remove-wrapper),
43 .no-file #details { 44 .no-file #details {
44 opacity: .5; 45 opacity: .5;
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 #content { 182 #content {
182 margin: 0 auto; 183 margin: 0 auto;
183 } 184 }
184 185
185 #date-container { 186 #date-container {
186 flex: none !important; 187 flex: none !important;
187 margin: 0 auto 32px; 188 margin: 0 auto 32px;
188 width: var(--downloads-item-width); 189 width: var(--downloads-item-width);
189 } 190 }
190 } 191 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698