 Chromium Code Reviews
 Chromium Code Reviews Issue 10544171:
  Add OptionsUI and its handler for multiple displays.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 10544171:
  Add OptionsUI and its handler for multiple displays.  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| OLD | NEW | 
|---|---|
| (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; | |
| 
James Hawkins
2012/06/20 16:21:03
Why do you need to set the z-index?
 
Jun Mukai
2012/06/21 08:42:58
Removed.  Thanks for pointing.  That was introduce
 | |
| 36 } | |
| OLD | NEW |