Home | History | Annotate | Download | only in login
      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 
      6 #accessibility-menu {
      7   -webkit-padding-after: 25px;
      8   -webkit-padding-before: 15px;
      9   -webkit-padding-end: 80px;
     10   -webkit-padding-start: 25px;
     11 }
     12 
     13 .checkboxrow {
     14   -webkit-margin-before: 10px;
     15   display: -webkit-box;
     16 }
     17 
     18 .checkboxlabel {
     19   -webkit-margin-start: 10px;
     20 }
     21 
     22 .close-button {
     23   background: url('chrome://theme/IDR_CLOSE_DIALOG') center no-repeat;
     24   height: 14px;
     25   position: absolute;
     26   right: 7px;
     27   top: 7px;
     28   width: 14px;
     29 }
     30 
     31 .close-button:hover {
     32   background-image: url('chrome://theme/IDR_CLOSE_DIALOG_H');
     33 }
     34 
     35 .close-button:active {
     36   background-image: url('chrome://theme/IDR_CLOSE_DIALOG_P');
     37 }
     38 
     39 html[dir=rtl] .close-button {
     40   left: 10px;
     41   right: auto;
     42 }
     43 
     44