 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| Index: chrome/browser/resources/options2/chromeos/display_options.css | 
| diff --git a/chrome/browser/resources/options2/chromeos/display_options.css b/chrome/browser/resources/options2/chromeos/display_options.css | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..7c0937b94c88de79a6bb1aeb1e40efe4b7939fc4 | 
| --- /dev/null | 
| +++ b/chrome/browser/resources/options2/chromeos/display_options.css | 
| @@ -0,0 +1,36 @@ | 
| +/* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
| + * Use of this source code is governed by a BSD-style license that can be | 
| + * found in the LICENSE file. */ | 
| + | 
| +#display-options-displays-view-host { | 
| + padding: 20px; | 
| +} | 
| + | 
| +#display-options-displays-view { | 
| + height: 300px; | 
| + position: relative; | 
| +} | 
| + | 
| +#display-configurations { | 
| + border-top: 1px solid blue; | 
| + padding-top: 20px; | 
| + text-align: right; | 
| +} | 
| + | 
| +.displays-display { | 
| + background-color: white; | 
| + border: dashed 1px; | 
| + position: absolute; | 
| + text-align: center; | 
| + vertical-align: middle; | 
| + z-index: 0; | 
| +} | 
| + | 
| +.displays-primary { | 
| + border: solid 1px blue; | 
| +} | 
| + | 
| +.displays-focused { | 
| + border: solid 2px; | 
| + 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
 | 
| +} |