blob: 8973715f4a31824ebaf1f766840fed0b78165a7e (
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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
// TODO(andy_st): Add original copyright notice from Drupal l10_client.
// TODO(andy_st): Add G3 copyright notice.
// TODO(andy_st): clean up formatting to match our other CSS files.
/* $Id: l10n_client.css,v 1.6 2008/09/09 10:48:20 goba Exp $ */
/* width percentages add to 99% rather than 100% to prevent float
overflows from occurring in an unnamed browser that can't decide
how it wants to round. */
/* l10n_client container */
#l10n-client {
text-align:left;
z-index:99;
line-height:1em;
color:#000; background:#fff;
position:fixed;
width:100%; height: 2em;
bottom:0px; left:0px;
overflow:hidden;}
* html #l10n-client {
position:static;}
#l10n-client-string-select .string-list,
#l10n-client-string-editor .source,
#l10n-client-string-editor .editor {
height:20em;}
#l10n-client .labels {
overflow:hidden;
position:relative;
height:2em;
color:#fff;
background:#37a;}
#l10n-client .labels .label {
display:none;}
/* Panel toggle button (span) */
#l10n-client .labels .toggle {
cursor:pointer;
display:block;
position:absolute; right:0em;
padding: 0em .75em; height:2em; line-height:2em;
text-transform:uppercase;
text-align:center; background:#000;}
/* Panel labels */
#l10n-client h2 {
border-left:1px solid #fff;
height:1em; line-height:1em;
padding: .5em; margin:0px;
font-size:1em;
text-transform:uppercase;}
#l10n-client .strings h2 {
border:0px;}
/* 25 + 37 + 37 = 99 */
#l10n-client .strings {
width:25%; float:left;}
#l10n-client .source {
width:37%; float:left;}
#l10n-client .translation {
width:37%; float:left;}
/* Translatable string list */
#l10n-client-string-select {
display:none;
float:left;
width:25%;}
#l10n-client .string-list {
height:17em;
overflow:auto;
list-style:none; list-style-image:none;
margin:0em; padding:0em;}
#l10n-client .string-list li {
font-size:.9em;
line-height:1.5em;
cursor:default;
background:transparent;
list-style:none; list-style-image:none;
border-bottom:1px solid #ddd;
padding:.25em .5em;
margin:0em;}
/* Green for translated */
#l10n-client .string-list li.translated {
border-bottom-color:#9c3;
background:#cf6; color:#360;}
#l10n-client .string-list li.translated:hover {
background: #df8;}
#l10n-client .string-list li.translated:active {
background: #9c3;}
#l10n-client .string-list li.hidden {
display:none;}
/* Gray + Blue hover for untranslated */
#l10n-client .string-list li.untranslated {}
#l10n-client .string-list li.untranslated:hover {
background: #ace;}
#l10n-client .string-list li.untranslated:active {
background: #8ac;}
/* Selected string is indicated by bold text */
#l10n-client .string-list li.active {
font-weight:bold;}
#l10n-client #gL10nSearchForm {
background:#eee;
text-align:center;
height:2em; line-height:2em;
margin:0em; padding:.5em .5em;
}
#l10n-client #gL10nSearchForm .form-item,
#l10n-client #gL10nSearchForm input.form-text,
#l10n-client #gL10nSearchForm #search-filter-go,
#l10n-client #gL10nSearchForm #search-filter-clear {
display:inline;
vertical-align:middle;
}
#l10n-client #gL10nSearchForm .form-item {
margin:0em;
padding:0em;
}
#l10n-client #gL10nSearchForm input.form-text {
width:80%;
}
#l10n-client #gL10nSearchForm #search-filter-clear {
width:10%;
margin:0em;
}
#l10n-client-string-editor {
display:none;
float:left;
width:74%;}
#l10n-client-string-editor .source {
overflow:hidden;
width:50%; float:left;}
#l10n-client-string-editor .source .source-text {
line-height:1.5em;
background:#eee;
height:16em; margin:1em; padding:1em;
overflow:auto;}
#l10n-client-string-editor .translation {
overflow:hidden;
width:49%; float:right;}
#gL10nClientSaveForm {
padding:0em;}
#gL10nClientSaveForm .form-textarea {
height:13em;
font-size:1em; line-height:1.25em;
width:95%;}
#gL10nClientSaveForm .form-submit {
margin-top: 0em;}
#l10n-client form ul,
#l10n-client form li,
#l10n-client form input[type=submit],
#l10n-client form input[type=text] {
display: inline ! important ;
}
|