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

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

Issue 10809005: Options: Rename chrome/browser/resources/options2 -> chrome/browser/resources/options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix. Created 8 years, 4 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
(Empty)
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
3 * found in the LICENSE file. */
4
5 #display-options {
6 background-color: rgb(240, 240, 240);
7 }
8
9 #display-options-content-area {
10 padding: 0;
11 }
12
13 #display-options-displays-view-host {
14 padding: 20px 0 20px 0;
15 }
16
17 #display-options-displays-view {
18 position: relative;
19 width: 100%;
20 }
21
22 #display-options-displays-view-mirroring {
23 margin: 20px 0 20px 0;
24 }
25
26 #display-configurations {
27 background-color: white;
28 border-top: 1px solid lightgrey;
29 height: 65px;
30 padding: 15px;
31 }
32
33 /* The arrow at the border #display-configurations to point the focused display.
34 * This is achieved by a square rotated by 45-deg, and it has border at the
35 * upper-half, which were left/top before the rotation. */
36 #display-configuration-arrow {
37 -webkit-transform: rotate(45deg);
38 background-color: white;
39 border-left: 1px solid lightgrey;
40 border-top: 1px solid lightgrey;
41 height: 20px;
42 position: absolute;
43 width: 20px;
44 z-index: 1;
45 }
46
47 #display-options-buttons-container {
48 float: right;
49 z-index: 2;
50 }
51
52 html[dir=rtl] #display-options-buttons-container {
53 float: left;
54 }
55
56
57 #selected-display-data-container {
58 float: left;
59 line-height: 200%;
60 z-index: 2;
61 }
62
63 html[dir=rtl] #selected-display-data-container {
64 float: right;
65 }
66
67 #selected-display-name {
68 font-weight: bold;
69 }
70
71 #display-launcher {
72 background-color: lightgrey;
73 bottom: 0;
74 height: 10px;
75 position: absolute;
76 }
77
78 .displays-display {
79 background: rgb(240, 240, 240);
80 border: solid 1px;
81 font-weight: bold;
82 position: absolute;
83 text-align: center;
84 vertical-align: middle;
85 z-index: 2;
86 }
87
88 .display-mirrored {
89 border: dashed 1px;
90 }
91
92 .displays-focused {
93 border: solid 2px rgb(0, 138, 255);
94 color: rgb(0, 138, 255);
95 }
96
97 .display-options-single-button-container {
98 margin: 5px 0 5px 0;
99 }
100
101 .display-options-button {
102 width: 120px;
103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698