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

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

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only Created 3 years, 10 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 (c) 2013 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 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 /* This file contains styles specific to Android and iOS. */ 5 /* This file contains styles specific to Android and iOS. */
6 6
7 html:not(.focus-outline-visible) :focus { 7 html:not(.focus-outline-visible) :focus {
8 outline: none; 8 outline: none;
9 } 9 }
10 10
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 } 187 }
188 188
189 .day-results, 189 .day-results,
190 .search-results { 190 .search-results {
191 margin: 0; 191 margin: 0;
192 } 192 }
193 193
194 /* Fade out the entry-box, rather than its parent node, so that the dividing 194 /* Fade out the entry-box, rather than its parent node, so that the dividing
195 line between entries doesn't fade out. */ 195 line between entries doesn't fade out. */
196 .entry.fade-out .entry-box { 196 .entry.fade-out .entry-box {
197 -webkit-transition: opacity 200ms;
198 opacity: 1; 197 opacity: 1;
198 transition: opacity 200ms;
199 } 199 }
200 200
201 .entry.fade-out { 201 .entry.fade-out {
202 opacity: 1; 202 opacity: 1;
203 } 203 }
204 204
205 .entry.fade-out .entry-box { 205 .entry.fade-out .entry-box {
206 opacity: 0; 206 opacity: 0;
207 } 207 }
208 208
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 354
355 .ios-keyboard-visible #scrolling-container { 355 .ios-keyboard-visible #scrolling-container {
356 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ 356 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */
357 bottom: -1px; 357 bottom: -1px;
358 } 358 }
359 359
360 #results-header:empty { 360 #results-header:empty {
361 display: none; 361 display: none;
362 } 362 }
363 </if> /* is_ios */ 363 </if> /* is_ios */
OLDNEW
« no previous file with comments | « chrome/browser/resources/history/history.js ('k') | chrome/browser/resources/inspect/inspect.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698