~ubuntu-branches/ubuntu/karmic/firebug/karmic

« back to all changes in this revision

Viewing changes to skin/classic/panelbase.css

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2009-01-08 06:23:15 UTC
  • mfrom: (1.1.2 upstream) (0.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090108062315-8axszgu22g9a2uyn
Tags: 1.2.1-1ubuntu1
* Merge with Debian unstable (LP: #314962)
* debian/control: 
  - Changed references of Iceweasel to Firefox
  - Changed dependency on iceweasel to firefox | abrowser 
    (also close LP: #272959)
  - Changed binary name to firebug
* debian/rules: Changed tag name from makebuilddir/iceweasel-firebug to
  makebuilddir/firebug::
* Created debian/links, debian/docs and debian/install from debian ones

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* See license.txt for terms of usage */
2
 
 
3
 
html {
4
 
    background-color: -moz-dialog;
5
 
}
6
 
 
7
 
body {
8
 
    margin: 0;
9
 
    overflow: hidden;
10
 
    font-family: Lucida Grande, Tahoma, sans-serif;
11
 
    font-size: 11px;
12
 
}
13
 
 
14
 
h1 {
15
 
    font-size: 17px;
16
 
    border-bottom: 1px solid threedlightshadow;
17
 
}
18
 
 
19
 
a {
20
 
    color: #0000ff;
21
 
}
22
 
 
23
 
pre {
24
 
    margin: 0;
25
 
    font: inherit;
26
 
}
27
 
 
28
 
/************************************************************************************************/
29
 
 
30
 
.jumpHighlight {
31
 
    background-color: cyan;
32
 
}
33
 
 
34
 
/************************************************************************************************/
35
 
 
36
 
.collapsed,
37
 
[collapsed="true"] {
38
 
    display: none;
39
 
}
40
 
 
41
 
.obscured {
42
 
    left: -999999px !important;
43
 
}
44
 
 
45
 
.measureBox {
46
 
    position: absolute;
47
 
    visibility: hidden;
48
 
    top: 0;
49
 
    left: 0;
50
 
    white-space: nowrap;
51
 
}
52
 
 
53
 
/************************************************************************************************/
54
 
 
55
 
.panelNode {
56
 
    display: none;
57
 
    overflow: auto;
58
 
    position: absolute;
59
 
    width: 100%;
60
 
    height: 100%;
61
 
    left: 0;
62
 
    top: 0;
63
 
    background-color: #FFFFFF;
64
 
    color: #000000;
65
 
}
66
 
 
67
 
.panelNode[active="true"] {
68
 
    display: block;
69
 
}
70
 
 
71
 
.pluginBrowser {
72
 
    position: absolute;
73
 
    width: 100%;
74
 
    height: 100%;
75
 
    left: 0;
76
 
    top: 0;
77
 
    margin: 0;
78
 
    border: none;
79
 
}
80
 
 
81
 
/************************************************************************************************/
82
 
 
83
 
.dialogBox {
84
 
    position: relative;
85
 
    margin: 4em auto;
86
 
    border: 1px solid threedshadow;
87
 
    -moz-border-radius: 10px;
88
 
    padding: 20px 30px 30px 90px;
89
 
    background: -moz-field url(chrome://firebug/skin/firebug32.png) no-repeat 30px 30px;
90
 
    color: -moz-fieldText;
91
 
    font: message-box;
92
 
    min-width: 13em;
93
 
    max-width: 48em;
94
 
}
95
 
 
96
 
.dialogCaption {
97
 
    font-size: 130%;
98
 
}
99
 
 
100
 
.dialogRow {
101
 
    margin: 8px 0;
102
 
    font-size: 13px;
103
 
}
104
 
 
105
 
.dialogLink:hover {
106
 
    text-decoration: underline;
107
 
}
108
 
 
109
 
.disabledCaption {
110
 
    display: none;
111
 
}
112
 
 
113
 
.cantDisplayPage > .dialogCaption {
114
 
    display: block;
115
 
}
116
 
 
117
 
.cantDisplayPage > .dialogRow {
118
 
    display: none;
119
 
}
120
 
 
121
 
/************************************************************************************************/
122
 
 
123
 
#trialBox {
124
 
    z-index: 2147483647;
125
 
    position: absolute;
126
 
    top: 0;
127
 
    left: 0;
128
 
    width: 100%;
129
 
    height: 100%;
130
 
    background-color: -moz-dialog;
131
 
}
132
 
 
133
 
/************************************************************************************************/
134
 
 
135
 
.inlineEditor,
136
 
.fixedWidthEditor {
137
 
    z-index: 2147483647;
138
 
    position: absolute;
139
 
}
140
 
 
141
 
.inlineEditor {
142
 
    margin-left: -6px;
143
 
    margin-top: -3px;
144
 
}
145
 
 
146
 
.textEditorInner,
147
 
.fixedWidthEditor {
148
 
    margin: 0 0 0 0 !important;
149
 
    padding: 0;
150
 
    border: none !important;
151
 
    font: inherit;
152
 
    text-decoration: inherit;
153
 
    background-color: #FFFFFF;
154
 
}
155
 
 
156
 
.fixedWidthEditor {
157
 
    border-top: 1px solid #888888 !important;
158
 
    border-bottom: 1px solid #888888 !important;
159
 
}
160
 
 
161
 
.textEditorInner {
162
 
    position: relative;
163
 
    top: -7px;
164
 
    left: -5px;
165
 
}
166
 
 
167
 
.textEditorInner1 {
168
 
    padding-left: 11px;
169
 
    background: url(textEditorBorders.png) repeat-y;
170
 
}
171
 
 
172
 
.textEditorInner2 {
173
 
    position: relative;
174
 
    padding-right: 2px;
175
 
    background: url(textEditorBorders.png) repeat-y 100% 0;
176
 
}
177
 
 
178
 
.textEditorTop1 {
179
 
    background: url(textEditorCorners.png) no-repeat 100% 0;
180
 
    margin-left: 11px;
181
 
    height: 10px;
182
 
}
183
 
 
184
 
.textEditorTop2 {
185
 
    position: relative;
186
 
    left: -11px;
187
 
    width: 11px;
188
 
    height: 10px;
189
 
    background: url(textEditorCorners.png) no-repeat;
190
 
}
191
 
 
192
 
.textEditorBottom1 {
193
 
    position: relative;
194
 
    background: url(textEditorCorners.png) no-repeat 100% 100%;
195
 
    margin-left: 11px;
196
 
    height: 12px;
197
 
}
198
 
 
199
 
.textEditorBottom2 {
200
 
    position: relative;
201
 
    left: -11px;
202
 
    width: 11px;
203
 
    height: 12px;
204
 
    background: url(textEditorCorners.png) no-repeat 0 100%;
205
 
}
206
 
 
207
 
/************************************************************************************************/
208
 
 
209
 
.infoTip {
210
 
    z-index: 2147483647;
211
 
    position: fixed;
212
 
    padding: 2px 3px;
213
 
    border: 1px solid #CBE087;
214
 
    background: LightYellow;
215
 
    font-family: Monaco, monospace;
216
 
    color: #000000;
217
 
    display: none;
218
 
    white-space: nowrap;
219
 
}
220
 
 
221
 
.infoTip[active="true"] {
222
 
    display: block;
223
 
}
224
 
 
225
 
.infoTipLoading {
226
 
    width: 16px;
227
 
    height: 16px;
228
 
    background: url(chrome://firebug/skin/loading_16.gif) no-repeat;
229
 
}
230
 
 
231
 
.infoTipImageBox {
232
 
    min-width: 100px;
233
 
    text-align: center;
234
 
}
235
 
 
236
 
.infoTipCaption {
237
 
    font: message-box;
238
 
}
239
 
 
240
 
.infoTipLoading > .infoTipImage,
241
 
.infoTipLoading > .infoTipCaption {
242
 
    display: none;
243
 
}
244
 
 
245
 
/************************************************************************************************/
246
 
 
247
 
h1.groupHeader {
248
 
    padding: 2px 4px;
249
 
    margin: 0 0 4px 0;
250
 
    border-top: 1px solid #CCCCCC;
251
 
    border-bottom: 1px solid #CCCCCC;
252
 
    background: url(chrome://firebug/skin/group.gif) repeat-x #FFFFFF;
253
 
    font-size: inherit;
254
 
}
255
 
 
256
 
/************************************************************************************************/
257
 
 
258
 
.fullPanelEditor {
259
 
    z-index: 2147483647;
260
 
    position: fixed;
261
 
    left: 0 !important;
262
 
    top: 0 !important;
263
 
    right: 0 !important;
264
 
    bottom: 0 !important;
265
 
    width: 100% !important;
266
 
    height: 100% !important;
267
 
    margin: 0;
268
 
    border: none;
269
 
    padding-left: 8px;
270
 
    font-family: Monaco, monospace;
271
 
    font-size: Inherit;
272
 
}
273
 
 
274
 
/************************************************************************************************/
275
 
 
276
 
.disablePageBox {
277
 
    width: 100%;
278
 
    position: relative;
279
 
    padding: 20px 30px 30px 90px;
280
 
    background: -moz-field url(chrome://firebug/skin/firebug32.png) no-repeat 30px 30px;
281
 
    color: -moz-fieldText;
282
 
    font: message-box;
283
 
}
284
 
 
285
 
.disablePageLink:hover {
286
 
    text-decoration: underline;
287
 
    cursor: pointer;
288
 
}
289
 
 
290
 
.disablePageDescription {
291
 
    margin: 8px 0;
292
 
    font-size: 13px;
293
 
}
294
 
 
295
 
.disablePageRow {
296
 
    margin: 8px 0;
297
 
    font-size: 13px;
298
 
}
299
 
 
300
 
.disablePageRow td {
301
 
    vertical-align:middle;
302
 
}
303
 
 
304
 
.disablePageRow button {
305
 
    margin-left:250px;
306
 
}
307
 
 
308
 
.disablePageText {
309
 
    color:Gray;
310
 
}