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

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

Issue 1964493002: MD Downloads: use custom iconset (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@CrIconsCrOS
Patch Set: rebase Created 4 years, 7 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 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 display: flex; 6 display: flex;
7 flex-direction: column; 7 flex-direction: column;
8 } 8 }
9 9
10 #date { 10 #date {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 #content:not(.is-active) .icon { 82 #content:not(.is-active) .icon {
83 -webkit-filter: grayscale(100%); 83 -webkit-filter: grayscale(100%);
84 opacity: .5; 84 opacity: .5;
85 } 85 }
86 86
87 #danger-icon { 87 #danger-icon {
88 height: 32px; 88 height: 32px;
89 width: 32px; 89 width: 32px;
90 } 90 }
91 91
92 #danger-icon[icon='warning'] { 92 #danger-icon[icon='downloads:warning'] {
93 color: rgb(255, 193, 7); 93 color: rgb(255, 193, 7);
94 } 94 }
95 95
96 #danger-icon[icon='remove-circle'] { 96 #danger-icon[icon='downloads:remove-circle'] {
97 color: rgb(244, 67, 54); 97 color: rgb(244, 67, 54);
98 } 98 }
99 99
100 #name, 100 #name,
101 #file-link, 101 #file-link,
102 #url { 102 #url {
103 max-width: 100%; 103 max-width: 100%;
104 } 104 }
105 105
106 #name, 106 #name,
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 } 204 }
205 205
206 #incognito { 206 #incognito {
207 bottom: 20px; 207 bottom: 20px;
208 content: -webkit-image-set( 208 content: -webkit-image-set(
209 url(chrome://downloads/1x/incognito_marker.png) 1x, 209 url(chrome://downloads/1x/incognito_marker.png) 1x,
210 url(chrome://downloads/2x/incognito_marker.png) 2x); 210 url(chrome://downloads/2x/incognito_marker.png) 2x);
211 position: absolute; 211 position: absolute;
212 right: 10px; 212 right: 10px;
213 } 213 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/icons.html ('k') | chrome/browser/resources/md_downloads/item.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698