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

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

Issue 10544171: Add OptionsUI and its handler for multiple displays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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-displays-view-host {
6 padding: 20px;
7 }
8
9 #display-options-displays-view {
10 height: 300px;
11 position: relative;
12 }
13
14 #display-configurations {
15 border-top: 1px solid blue;
16 padding-top: 20px;
17 text-align: right;
18 }
19
20 .displays-display {
21 background-color: white;
22 border: dashed 1px;
23 position: absolute;
24 text-align: center;
25 vertical-align: middle;
26 z-index: 0;
27 }
28
29 .displays-primary {
30 border: solid 1px blue;
31 }
32
33 .displays-focused {
34 border: solid 2px;
35 z-index: 1;
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698