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

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: crisp 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; 189 -webkit-user-select: none;
190 --iron-icon-width: 16px;
191 --layout-inline: {
192 /* HACK(dbeam): we probably shouldn't be overriding Polymer like this. */
193 };
194 color: #969696; 190 color: #969696;
191 cursor: pointer;
192 font-size: 16px;
195 height: 16px; 193 height: 16px;
194 line-height: 16px;
195 outline: none;
196 padding: 8px; 196 padding: 8px;
197 position: relative;
198 text-align: center;
197 width: 16px; 199 width: 16px;
198 } 200 }
199 201
200 #incognito { 202 #incognito {
201 bottom: 20px; 203 bottom: 20px;
202 content: -webkit-image-set( 204 content: -webkit-image-set(
203 url(chrome://downloads/1x/incognito_marker.png) 1x, 205 url(chrome://downloads/1x/incognito_marker.png) 1x,
204 url(chrome://downloads/2x/incognito_marker.png) 2x); 206 url(chrome://downloads/2x/incognito_marker.png) 2x);
205 position: absolute; 207 position: absolute;
206 right: 10px; 208 right: 10px;
207 } 209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698