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

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

Issue 1266443007: MD downloads: implement incognito markers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dl-menu2
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
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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 --paper-progress-active-color: rgb(54, 126, 237); 118 --paper-progress-active-color: rgb(54, 126, 237);
119 --paper-progress-container-color: rgb(223, 222, 223); 119 --paper-progress-container-color: rgb(223, 222, 223);
120 width: auto; 120 width: auto;
121 } 121 }
122 122
123 /* TODO(dbeam): open up a CSS mixin instead in Polymer. */ 123 /* TODO(dbeam): open up a CSS mixin instead in Polymer. */
124 #progress /deep/ #progressContainer { 124 #progress /deep/ #progressContainer {
125 border-radius: 2px; 125 border-radius: 2px;
126 } 126 }
127 127
128 #incognito {
129 -webkit-margin-end: 0;
130 -webkit-margin-start: 16px;
131 /* This image is 128x128 so it'll work fine in 2x. */
132 content: url(../../../../ui/webui/resources/images/incognito_icon.png);
133 width: 64px;
134 }
135
128 #remove-wrapper { 136 #remove-wrapper {
129 align-self: flex-start; 137 align-self: flex-start;
130 margin: 0; 138 margin: 0;
131 } 139 }
132 140
133 #remove { 141 #remove {
134 --paper-icon-button: { 142 --paper-icon-button: {
135 height: 16px; 143 height: 16px;
136 width: 16px; 144 width: 16px;
137 }; 145 };
(...skipping 28 matching lines...) Expand all
166 #content { 174 #content {
167 margin: 0 auto; 175 margin: 0 auto;
168 } 176 }
169 177
170 #date-container { 178 #date-container {
171 flex: none !important; 179 flex: none !important;
172 margin: 0 auto 32px; 180 margin: 0 auto 32px;
173 width: var(--downloads-item-width); 181 width: var(--downloads-item-width);
174 } 182 }
175 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698