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

Side by Side Diff: chrome/browser/resources/options/chromeos/display_options.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 #display-options-page { 5 #display-options-page {
6 background-color: rgb(240, 240, 240); 6 background-color: rgb(240, 240, 240);
7 } 7 }
8 8
9 #display-options-content-area { 9 #display-options-content-area {
10 padding: 0; 10 padding: 0;
(...skipping 13 matching lines...) Expand all
24 -webkit-padding-end: 0; 24 -webkit-padding-end: 0;
25 -webkit-padding-start: 15px; 25 -webkit-padding-start: 15px;
26 border-top: 1px solid lightgrey; 26 border-top: 1px solid lightgrey;
27 padding-top: 15px; 27 padding-top: 15px;
28 } 28 }
29 29
30 /* The arrow at the border #display-configurations to point the focused display. 30 /* The arrow at the border #display-configurations to point the focused display.
31 * This is achieved by a square rotated by 45-deg, and it has border at the 31 * This is achieved by a square rotated by 45-deg, and it has border at the
32 * upper-half, which were left/top before the rotation. */ 32 * upper-half, which were left/top before the rotation. */
33 #display-configuration-arrow { 33 #display-configuration-arrow {
34 -webkit-transform: rotate(45deg);
35 border-left: 1px solid lightgrey; 34 border-left: 1px solid lightgrey;
36 border-top: 1px solid lightgrey; 35 border-top: 1px solid lightgrey;
37 height: 20px; 36 height: 20px;
38 position: absolute; 37 position: absolute;
38 transform: rotate(45deg);
39 width: 20px; 39 width: 20px;
40 z-index: 1; 40 z-index: 1;
41 } 41 }
42 42
43 #display-configurations, 43 #display-configurations,
44 #display-configuration-arrow, 44 #display-configuration-arrow,
45 #display-options-page .action-area { 45 #display-options-page .action-area {
46 background-color: white; 46 background-color: white;
47 } 47 }
48 48
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 margin-right: 5px; 113 margin-right: 5px;
114 } 114 }
115 115
116 .display-options-button { 116 .display-options-button {
117 width: 140px; 117 width: 140px;
118 } 118 }
119 119
120 .display-options-button2 { 120 .display-options-button2 {
121 width: 120px; 121 width: 120px;
122 } 122 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698