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

Side by Side Diff: chrome/browser/resources/options/chromeos/display_options.css

Issue 14710011: Redesign display options for ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
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;
11 } 11 }
12 12
13 #display-options-displays-view-host { 13 #display-options-displays-view-host {
14 padding: 20px 0 20px 0; 14 padding: 20px 0 20px 0;
15 } 15 }
16 16
17 #display-options-displays-view { 17 #display-options-displays-view {
18 overflow: hidden; 18 overflow: hidden;
19 position: relative; 19 position: relative;
20 width: 100%; 20 width: 100%;
21 } 21 }
22 22
23 #display-options-displays-view-mirroring { 23 #display-options-displays-view-mirroring {
24 margin: 20px 0 20px 0; 24 margin: 20px 0 20px 0;
25 } 25 }
26 26
27 #display-configurations { 27 #display-configurations {
28 background-color: white; 28 background-color: white;
29 border-top: 1px solid lightgrey; 29 border-top: 1px solid lightgrey;
30 height: 65px;
31 padding: 15px; 30 padding: 15px;
32 } 31 }
33 32
34 /* The arrow at the border #display-configurations to point the focused display. 33 /* The arrow at the border #display-configurations to point the focused display.
35 * This is achieved by a square rotated by 45-deg, and it has border at the 34 * This is achieved by a square rotated by 45-deg, and it has border at the
36 * upper-half, which were left/top before the rotation. */ 35 * upper-half, which were left/top before the rotation. */
37 #display-configuration-arrow { 36 #display-configuration-arrow {
38 -webkit-transform: rotate(45deg); 37 -webkit-transform: rotate(45deg);
39 background-color: white; 38 background-color: white;
40 border-left: 1px solid lightgrey; 39 border-left: 1px solid lightgrey;
41 border-top: 1px solid lightgrey; 40 border-top: 1px solid lightgrey;
42 height: 20px; 41 height: 20px;
43 position: absolute; 42 position: absolute;
44 width: 20px; 43 width: 20px;
45 z-index: 1; 44 z-index: 1;
46 } 45 }
47 46
48 #display-options-buttons-container { 47 #selected-display-data-container {
49 float: right;
50 z-index: 2; 48 z-index: 2;
51 } 49 }
52 50
53 html[dir=rtl] #display-options-buttons-container { 51 #selected-display-data-container h2 {
James Hawkins 2013/05/15 21:55:33 Why does this need to be different from any other
James Hawkins 2013/05/16 17:37:11 This comment is unresolved.
Jun Mukai 2013/05/16 23:51:10 sorry for not replying. The new patchset changed t
54 float: left; 52 font-size: large;
53 font-weight: normal;
54 margin-top: 5px;
55 padding: 0;
55 } 56 }
56 57
57 58 #selected-display-data-container td {
58 #selected-display-data-container { 59 padding-right: 10px;
59 float: left;
60 line-height: 200%;
61 z-index: 2;
62 }
63
64 html[dir=rtl] #selected-display-data-container {
65 float: right;
66 } 60 }
67 61
68 #selected-display-name { 62 #selected-display-name {
69 font-weight: bold; 63 font-weight: bold;
70 } 64 }
71 65
72 .displays-display { 66 .displays-display {
73 -webkit-user-select: none; 67 -webkit-user-select: none;
74 background: rgb(240, 240, 240); 68 background: rgb(240, 240, 240);
75 border: solid 1px; 69 border: solid 1px;
76 font-weight: bold; 70 font-weight: bold;
77 position: absolute; 71 position: absolute;
78 text-align: center; 72 text-align: center;
79 z-index: 2; 73 z-index: 2;
80 } 74 }
81 75
82 .display-mirrored { 76 .display-mirrored {
83 border: solid 1px; 77 border: solid 1px;
84 } 78 }
85 79
86 .displays-focused { 80 .displays-focused {
87 border: solid 2px rgb(0, 138, 255); 81 border: solid 2px rgb(0, 138, 255);
88 color: rgb(0, 138, 255); 82 color: rgb(0, 138, 255);
89 } 83 }
90 84
91 .display-options-single-button-container { 85 .display-options-button {
92 padding: 5px 0; 86 width: 135px;
93 } 87 }
94
95 .display-options-button {
96 width: 120px;
97 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698