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