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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/* 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.
*/
/* This file holds CSS that should be shared, in theory, by all user-visible
* chrome:// pages. This contrasts chrome_shared.css, which it is meant to
* replace, but has CSS specific to options and options-like pages. */
/* Prevent CSS from overriding the hidden property. */
[hidden] {
display: none !important;
}
body {
cursor: default;
font-family: Open Sans, sans-serif;
font-size: 12px;
margin: 0;
}
p {
line-height: 22px;
}
h1 {
color: rgb(17, 85, 204);
font-size: 18px;
font-weight: normal;
}
a:link {
color: rgb(63, 110, 194);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
color: rgb(5, 37, 119);
}
div.checkbox,
div.radio {
margin: 5px 0;
}
input[type=radio] ~ span,
input[type=checkbox] ~ span {
color: #444;
}
/* Elements that need to be LTR even in an RTL context, but should align
* right. (Namely, URLs, search engine names, etc.)
*/
html[dir='rtl'] .weakrtl {
direction: ltr;
text-align: right;
}
/* Input fields in search engine table need to be weak-rtl. Since those input
* fields are generated for all cr.ListItem elements (and we only want weakrtl
* on some), the class needs to be on the enclosing div.
*/
html[dir='rtl'] div.weakrtl input {
direction: ltr;
text-align: right;
}
html[dir='rtl'] .favicon-cell.weakrtl {
-webkit-padding-end: 22px;
-webkit-padding-start: 0;
}
/* weakrtl for selection drop downs needs to account for the fact that
* Webkit does not honor the text-align attribute for the select element.
* (See Webkit bug #40216)
*/
html[dir='rtl'] select.weakrtl {
direction: rtl;
}
html[dir='rtl'] select.weakrtl option {
direction: ltr;
}
/* WebKit does not honor alignment for text specified via placeholder attribute.
* This CSS is a workaround. Please remove once WebKit bug is fixed.
* https://bugs.webkit.org/show_bug.cgi?id=63367
*/
html[dir='rtl'] input.weakrtl::-webkit-input-placeholder,
html[dir='rtl'] .weakrtl input::-webkit-input-placeholder {
direction: rtl;
}
.overlay {
-webkit-box-align: center;
-webkit-box-orient: vertical;
-webkit-box-pack: center;
-webkit-transition: 200ms opacity;
background-color: rgba(255, 255, 255, 0.75);
bottom: 0;
display: -webkit-box;
left: 0;
overflow: auto;
padding: 20px;
padding-bottom: 130px;
position: fixed;
right: 0;
top: 0;
}
|