Home | History | Annotate | Download | only in settings
      1 /* Copyright 2014 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 #more-settings {
      6   background-color: #f6f6f6;
      7   border-bottom: 1px solid #e1e1e1;
      8   border-top: 1px solid #e1e1e1;
      9   margin-top: 4px;
     10   min-height: 51px;
     11 }
     12 
     13 #more-settings .more-settings-icon {
     14   background-repeat: no-repeat;
     15   display: inline-block;
     16   height: 11px;
     17   margin: 20px 15px 20px 20px;
     18   vertical-align: middle;
     19   width: 11px;
     20 }
     21 
     22 #more-settings .more-settings-label {
     23   display: inline;
     24   height: 28px;
     25   margin: 10px 0;
     26 }
     27 
     28 #more-settings .more-settings-icon-minus {
     29   background-image: -webkit-image-set(
     30       url('../images/1x/minus.png') 1x,
     31       url('../images/2x/minus.png') 2x);
     32 }
     33 
     34 #more-settings .more-settings-icon-plus {
     35   background-image: -webkit-image-set(
     36       url('../images/1x/plus.png') 1x,
     37       url('../images/2x/plus.png') 2x);
     38 }
     39