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

Side by Side Diff: chrome/browser/resources/print_preview/previewarea/margin_control.css

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: rebase 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 #preview-area .margin-control { 5 #preview-area .margin-control {
6 -webkit-transition: opacity 150ms linear;
7 position: absolute; 6 position: absolute;
7 transition: opacity 150ms linear;
8 } 8 }
9 9
10 #preview-area .margin-control.invisible { 10 #preview-area .margin-control.invisible {
11 opacity: 0; 11 opacity: 0;
12 pointer-events: none; 12 pointer-events: none;
13 } 13 }
14 14
15 #preview-area .margin-control.margin-control-top, 15 #preview-area .margin-control.margin-control-top,
16 #preview-area .margin-control.margin-control-bottom { 16 #preview-area .margin-control.margin-control-bottom {
17 cursor: ns-resize; 17 cursor: ns-resize;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 #preview-area .margin-control-bottom .margin-control-textbox { 81 #preview-area .margin-control-bottom .margin-control-textbox {
82 bottom: 8px; 82 bottom: 8px;
83 right: 50%; 83 right: 50%;
84 } 84 }
85 85
86 #preview-area .margin-control-left .margin-control-textbox { 86 #preview-area .margin-control-left .margin-control-textbox {
87 bottom: 50%; 87 bottom: 50%;
88 left: 8px; 88 left: 8px;
89 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698