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

Side by Side Diff: chrome/browser/resources/inspect/inspect.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) 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 * { 5 * {
6 box-sizing: border-box; 6 box-sizing: border-box;
7 } 7 }
8 8
9 body { 9 body {
10 color: rgb(48, 57, 66); 10 color: rgb(48, 57, 66);
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 271
272 .open > input { 272 .open > input {
273 border: 1px solid #aaa; 273 border: 1px solid #aaa;
274 height: 17px; 274 height: 17px;
275 line-height: 17px; 275 line-height: 17px;
276 margin-left: 20px; 276 margin-left: 20px;
277 padding: 0 2px; 277 padding: 0 2px;
278 } 278 }
279 279
280 .open > input:focus { 280 .open > input:focus {
281 -webkit-transition: border-color 200ms;
282 border-color: rgb(77, 144, 254); 281 border-color: rgb(77, 144, 254);
283 outline: none; 282 outline: none;
283 transition: border-color 200ms;
284 } 284 }
285 285
286 .open > button { 286 .open > button {
287 line-height: 13px; 287 line-height: 13px;
288 } 288 }
289 289
290 #device-settings { 290 #device-settings {
291 border-bottom: 1px solid #eee; 291 border-bottom: 1px solid #eee;
292 padding: 5px 0; 292 padding: 5px 0;
293 } 293 }
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 @media (min-width: 47em) { 439 @media (min-width: 47em) {
440 #container { 440 #container {
441 max-height: 100vh; 441 max-height: 100vh;
442 } 442 }
443 #navigation, 443 #navigation,
444 #content { 444 #content {
445 max-height: 100vh; 445 max-height: 100vh;
446 overflow: auto; 446 overflow: auto;
447 } 447 }
448 } 448 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/history/history_mobile.css ('k') | chrome/browser/resources/local_ntp/local_ntp.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698