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

Side by Side Diff: chrome/browser/resources/history/history.css

Issue 14834011: Android: use grit target platform instead of define. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missed pp_ifdef(android) Created 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/flags.html ('k') | chrome/browser/resources/history/history.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 html[dir='rtl'] body.uber-frame > .page { 5 html[dir='rtl'] body.uber-frame > .page {
6 -webkit-margin-end: 0; 6 -webkit-margin-end: 0;
7 } 7 }
8 8
9 #top-container { 9 #top-container {
10 margin-top: 16px; 10 margin-top: 16px;
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 min-width: 110px; 252 min-width: 110px;
253 width: 110px; 253 width: 110px;
254 } 254 }
255 255
256 .entry input[type='checkbox'] { 256 .entry input[type='checkbox'] {
257 -webkit-margin-end: 6px; 257 -webkit-margin-end: 6px;
258 -webkit-margin-start: 4px; 258 -webkit-margin-start: 4px;
259 line-height: 1em; 259 line-height: 1em;
260 } 260 }
261 261
262 <if expr="not pp_ifdef('android')"> 262 <if expr="not is_android">
263 /* Checkboxes are shown when checked or focused, or when the entry is hovered. 263 /* Checkboxes are shown when checked or focused, or when the entry is hovered.
264 * Fade in on focus, but not on hover, because it makes the UI feel laggy. */ 264 * Fade in on focus, but not on hover, because it makes the UI feel laggy. */
265 .site-domain-wrapper input[type=checkbox]:not(:checked), 265 .site-domain-wrapper input[type=checkbox]:not(:checked),
266 .entry input[type='checkbox']:not(:checked) { 266 .entry input[type='checkbox']:not(:checked) {
267 opacity: 0; 267 opacity: 0;
268 } 268 }
269 269
270 .site-domain-wrapper:hover input[type='checkbox'], 270 .site-domain-wrapper:hover input[type='checkbox'],
271 .site-domain-wrapper input[type='checkbox']:focus, 271 .site-domain-wrapper input[type='checkbox']:focus,
272 .entry-box:hover input[type='checkbox'], 272 .entry-box:hover input[type='checkbox'],
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 background-image: url(../../../../ui/webui/resources/images/phone_small.png); 534 background-image: url(../../../../ui/webui/resources/images/phone_small.png);
535 background-position: 14px center; 535 background-position: 14px center;
536 padding-left: 43px; 536 padding-left: 43px;
537 } 537 }
538 538
539 #action-menu[data-devicetype='tablet']::before { 539 #action-menu[data-devicetype='tablet']::before {
540 background-image: url(../../../../ui/webui/resources/images/tablet_small.png); 540 background-image: url(../../../../ui/webui/resources/images/tablet_small.png);
541 background-position: 17px center; 541 background-position: 17px center;
542 padding-left: 49px; 542 padding-left: 49px;
543 } 543 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/flags.html ('k') | chrome/browser/resources/history/history.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698