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

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

Issue 1409473002: MD Downloads: replace <paper-icon-button> with <inky-text-button> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iron-list3
Patch Set: revert some hunks Created 5 years, 2 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 .is-active #controlled-by a { 179 .is-active #controlled-by a {
180 color: rgb(51, 103, 214); 180 color: rgb(51, 103, 214);
181 } 181 }
182 182
183 #remove-wrapper { 183 #remove-wrapper {
184 align-self: flex-start; 184 align-self: flex-start;
185 margin: 0; 185 margin: 0;
186 } 186 }
187 187
188 #remove { 188 #remove {
189 --iron-icon-height: 16px;
190 --iron-icon-width: 16px;
191 --layout-inline: {
192 /* HACK(dbeam): we probably shouldn't be overriding Polymer like this. */
193 };
194 color: #969696; 189 color: #969696;
190 font-size: 16px;
195 height: 16px; 191 height: 16px;
192 line-height: 17px; /* TODO(dbeam): why is this necesssary? */
196 padding: 8px; 193 padding: 8px;
197 width: 16px; 194 width: 16px;
198 } 195 }
199 196
200 #incognito { 197 #incognito {
201 bottom: 20px; 198 bottom: 20px;
202 content: -webkit-image-set( 199 content: -webkit-image-set(
203 url(chrome://downloads/1x/incognito_marker.png) 1x, 200 url(chrome://downloads/1x/incognito_marker.png) 1x,
204 url(chrome://downloads/2x/incognito_marker.png) 2x); 201 url(chrome://downloads/2x/incognito_marker.png) 2x);
205 position: absolute; 202 position: absolute;
206 right: 10px; 203 right: 10px;
207 } 204 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/crisper.js ('k') | chrome/browser/resources/md_downloads/item.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698