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

Side by Side Diff: chrome/browser/resources/ntp4/incognito_tab.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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 .content > span { 5 .content > span {
6 max-width: 416px; 6 max-width: 416px;
7 } 7 }
8 8
9 .icon { 9 .icon {
10 -webkit-margin-start: 25px; 10 -webkit-margin-start: 25px;
11 content: -webkit-image-set( 11 content: -webkit-image-set(
12 url(../../../browser/resources/ntp4/images/incognito_icon.png) 1x, 12 url(../../../../ui/webui/resources/images/incognito_icon.png) 1x,
13 url(../../../browser/resources/ntp4/images/2x/incognito_icon.png) 2x); 13 url(../../../../ui/webui/resources/images/2x/incognito_icon.png) 2x);
14 float: right; 14 float: right;
15 height: 128px; 15 height: 128px;
16 margin-bottom: 10px; 16 margin-bottom: 10px;
17 margin-top: 4px; 17 margin-top: 4px;
18 width: 128px; 18 width: 128px;
19 } 19 }
20 20
21 html[dir='rtl'] .icon { 21 html[dir='rtl'] .icon {
22 float: left; 22 float: left;
23 } 23 }
24 24
25 @media (max-width:400px) { 25 @media (max-width:400px) {
26 .icon { 26 .icon {
27 -webkit-margin-start: 15px; 27 -webkit-margin-start: 15px;
28 height: 96px; 28 height: 96px;
29 width: 96px; 29 width: 96px;
30 } 30 }
31 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698