Home | History | Annotate | Download | only in chromeos
      1 /* Copyright (c) 2013 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-overscan-content-area {
      6   margin: 20px;
      7   padding: 0;
      8 }
      9 
     10 #display-overscan-operations-table {
     11   position: absolute;
     12   width: 100%;
     13 }
     14 
     15 #display-overscan-operations-table td {
     16   font-size: 12px;
     17   text-align: center;
     18   width: 50%;
     19 }
     20 
     21 .display-overscan-operation-image {
     22   padding-bottom: 30px;
     23 }
     24 
     25 #display-overscan-operation-images-row {
     26   vertical-align: middle;
     27 }
     28 
     29 #display-overscan-operation-arrows {
     30   background-image: -webkit-image-set(
     31     url('overscan_arrows.png') 1x,
     32     url('overscan_arrows_2x.png') 2x);
     33   background-position: center;
     34   background-repeat: no-repeat;
     35   height: 51px;
     36   width: 100%;
     37 }
     38 
     39 #display-overscan-operation-shift {
     40   background-image: -webkit-image-set(
     41     url('overscan_shift.png') 1x,
     42     url('overscan_shift_2x.png') 2x);
     43   background-position: center;
     44   background-repeat: no-repeat;
     45   height: 23px;
     46   width: 100%;
     47 }
     48 
     49 html[dir=rtl] #display-overscan-operation-shift {
     50   background-image: -webkit-image-set(
     51     url('overscan_shift_rtl.png') 1x,
     52     url('overscan_shift_rtl_2x.png') 2x);
     53 }
     54 
     55 #display-overscan-button-strip {
     56   bottom: 0;
     57   position: absolute;
     58   width: 100%;
     59 }
     60 
     61 #display-overscan-buttons-spacer {
     62   -webkit-box-flex: 1;
     63 }
     64