File: style.css

package info (click to toggle)
phpldapadmin 0.9.5-3sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,052 kB
  • ctags: 2,526
  • sloc: php: 21,258; sh: 262; makefile: 132; xml: 42
file content (621 lines) | stat: -rw-r--r-- 8,944 bytes parent folder | download
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
/* $Header: /cvsroot/phpldapadmin/phpldapadmin/style.css,v 1.40 2004/10/23 21:13:16 uugdave Exp $ */
span.hint {
	font-size: small;
	font-weight: normal;
	color: #888;
}

span.x-small {
	font-size: x-small;
}

table.schema_oclasses {
	border-left: 1px solid black;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	border-top: 0;
	margin-bottom: 10px;
	background-color: #eee;
}

table.schema_oclasses td {
	vertical-align: top;
	text-align: left;
	padding-left: 5px;
}

table.schema_attr th {
	background-color: #016;
	padding: 5px;
	color: white;
	font-weight: bold;
	font-size: 125%;
}

table.schema_attr td {
	padding: 5px;
	vertical-align: top;
}

table.schema_attr tr.even {
	background-color: #eee;
}

table.schema_attr tr.odd {
	background-color: #ccc;
}

table.schema_attr tr.highlight{
	background-color: #bcd;
	font-weight: Bold;
}

table.notice tr td {
	font-size: 9pt;
	padding: 2px;
	margin: 0px;
	background-color: #eee;
}

table.error {
	width: 500px;
	border: 2px solid black;
}

table.error tr td table.bug tr td{
	padding: 6px;
	margin: 0px;
	background-color: #eee;
}

table.error tr td {
	vertical-align: top;
	text-align: left;
	padding: 15px;
	border: 0px;
}

table.error tr td h2 {
	margin: 5px;
	margin-bottom: 20px;
}

table.error tr td.img {
	vertical-align: center;
	text-align: center;
	width: 20px;
}

table.confirm th {
	background-color: #016;
	padding: 5px;
	color: white;
	font-weight: normal;
}

table.confirm tr td {
	padding: 4px;
}

table.confirm tr.spacer {
	background-color: #ddd;
}

table.confirm tr.even {
	background-color: #ccc;
}

table.confirm tr.odd {
	background-color: #eee;
}

table.confirm tr td.heading {
	text-align: right;
	font-size: 75%;
}

table.confirm td.icon {
	text-align: center;
}

table.browse tr td {
	border: 0;
	margin: 0;
	padding: 0;
}

table.template_display tr td {
    vertical-align: top;
}

table.templates tr td {
	text-align: left;
	vertical-align: center;
}

table.templates tr {
	height: 25px;
}

table.templates td.icon {
	text-align: center;
}

table.exporters tr td {
	text-align: left;
	vertical-align: center;
}

table.exporters tr {
	height: 25px;
}

a img {
	border: 0px;
}

body {
	font-family: arial, helvetica, sans-serif;
	background-color: white;
	font-size: 12pt;
}

table.tree tr.login td {
}

table.tree td.links {
	padding: 0px;
	font-size: 10px;
	padding-left: 12px;
	font-size: 10px;
}

table.tree td.links a {
	font-size: 10px;
}

table.tree {
	border: 0px;
}

table.tree img {
	border: 0px;
}
	
table.tree td {
	padding: 2px;
	border: 0px solid black;
}

table.tree tr {
}

table.tree tr.server td.icon {
	width: 14px;
}

table.tree tr.server td {
	padding-top: 15px;
	padding-bottom: 0px;
	vertical-align: top;
	font-size: 20px;
	text-align: left;
}

table.tree td.icon {
	text-align: center;
	padding: 0px;
	width: 14px;
	font-size: 1px;
}

table.tree td.rdn {
	width: 500px;
}

table.tree td.rdn a {
	text-decoration: none;
	color: black;
}

table.tree td.rdn a:hover {
	text-decoration: underline;
	color: blue;
}

table.tree td.create {
}

table.tree td.create a {
	text-decoration: none;
	color: black;
}

table.tree td.create a:hover {
	text-decoration: underline;
	color: blue;
}


table.tree td.spacer {
	width: 22px;
}

table.tree td.expander {
	text-align: center;
	width: 22px;
	max-width: 22px;
	min-width: 22px;
}

table.tree td span.count {
	color: gray;
	font-size: 85%;
}

h3.title {
	text-align: center;
	margin: 0px;
	padding: 10px;
	color: white;
	background-color: #018;
	border: 1px solid black;
	font-weight: normal;
	font-size: 150%;
}

h3.subtitle {
	text-align: center;
	margin: 0px;
	margin-bottom: 15px;
	font-size: 75%;
	color: white;
	border-bottom: 1px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	background: #018;
	padding: 4px;
	font-weight: normal;
}

table.edit_dn {
	border-collapse: collapse;
	border-spacing: 0px;
	empty-cells: show;
	width: 500px;
}

table.edit_dn input {
	margin: 1px;
}

table.edit_dn input.val {
	font-size: 14px;
	width: 350px; 
	font-family: arial, helvetica, sans-serif
	background-color: white;
}

table.edit_dn textarea.val {
	font-size: 14px;
	width: 350px; 
	font-family: arial, helvetica, sans-serif;
	background-color: white;
}

table.edit_dn tr td {
	padding: 4px;
	padding-right: 0px;
}

table.edit_dn tr td.attr {
	background-color: #eee;
	vertical-align: top;
}

table.edit_dn tr td.heading {
	border-top: 3px solid #ccc;
	font-weight: bold;
}

table.edit_dn tr td.attr_note {
    text-align: right;
	background-color: #eee;
}

table.edit_dn tr td.attr a {
	text-decoration: none;
	color: black;
}

table.edit_dn tr td.attr a:hover {
	text-decoration: underline;
	color: #016;
}

table.edit_dn tr td.val {
	text-align: left;
	vertical-align: center;
	padding-bottom: 10px;
	padding-left: 80px;
}


/** When an attr is updated, it is highlighted to indicate such */
table.edit_dn tr.updated_attr td.attr {
	border-top: 1px dashed green;
	border-left: 1px dashed green;
	background-color: #ded;
}

table.edit_dn tr.updated_attr td.attr_note {
	border-top: 1px dashed green;
	border-right: 1px dashed green;
	background-color: #ded;
}

/** An extra row that sits at the bottom of recently modified attrs to encase them in dashes */
table.edit_dn tr.updated_attr td.bottom {
	border-top: 1px dashed green;
}

/** Formatting for the value cell when it is the attribute that has been recently modified */
table.edit_dn tr.updated_attr td.val {
	border-left: 1px dashed green;
	border-right: 1px dashed green;
}

/* Neede to prevent sub-tables (like the one in which jpegPhotos are displayed)
 * from drawing borders as well. */
table.edit_dn tr.updated_attr td table td {
	border: 0px;
}

table.edit_dn tr.updated_attr a {
}

table.edit_dn tr.mod_dn {
	background: #def;
}

table.edit_dn tr.row1 {
	background: #eee;
}

table.edit_dn tr.row2 {
	background: #ccc;
}

input.update_dn {
	font-size: 65%;
}

small {
	font-size: 10pt;
}

form.edit_dn {
	margin: 0px;
	padding: 0px;
}

h4.oclass {
	background: #016;
	padding: 5px;
	margin: 0px;
	margin-top: 8px;
	font-weight: normal;
	border: 1px solid black;
	font-size: 140%;
	color: white;
}

h4.oclass_sub {
	background: #dde;
	border: 1px solid black;
	border-top: 0px;
	font-weight: normal;
	margin: 0px;
	padding: 2px;
	padding-left: 5px;
	font-size: 80%;
}

ul.schema {
	margin: 5px;
	margin-left: 0px;
	padding-left: 20px;
}

ul.schema li {
	margin-left: 0px;
	padding-left: 0px;
}

ul.schema li small {
	font-size: 75%;
	color: #777;
}

ul.schema li small a {
	color: #77c;
}

ul.current_values {
	padding: 5px;
	padding-left: 25px;
	width: 200px;
	margin-left: 50px;
}

form.new_value {
	margin-left: 70px;
}

table.search_result_table {
    border-spacing: 0;
    border-collapse: collapse;
    empty-cells: show;
}

table.search_result_table td {
    vertical-align: top;
    border: 1px solid gray;
    padding: 4px;
}

table.search_result_table th {
    border: 1px solid gray;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

table.search_result_table tr.highlight {
    background-color: #eee;
}


ul.search {
	font-weight: bold;
}

table.search_header {
	background-color: #ddf;
    width: 100%;
    vertical-align: top;
}

div.search_result {
	list-style-type: none;
	padding: 6px;
	padding-left: 20px;
	margin-right: 40px;
}

table.attrs {
	font-weight: normal;
	font-size: 75%;
	margin: 0px;
	margin-left: 35px;
}

table.attrs td {
	padding-right: 10px;
}

table.attrs td.attr {
	color: #aaa;
	padding-left: 15px;
}

form.search {
	width: 500px;
	background-color: #ddf;
	padding: 5px;
}

table.edit_dn_menu {
	font-size: 75%;
}

table.edit_dn_menu td.icon {
	width: 16px;
	text-align: center;
}

input.scary {
	background: red;
	font-weight: bold;
	color: white;
}

input.cancel {
	padding-left: 10px;
	padding-right: 10px;
	font-weight: bold;
}

input.happy {
	background: green;
	font-weight: bold;
	color: white;
}

table.delete_confirm {
	width: 76%;
	background-color: #ddf;
	padding: 20px;
	text-align: left;
}

table.login {
	background-color: #ddf;
	padding: 10px;
}

table.login td {
	padding: 5px;
}

table.create {
	font-size: 75%;
}

table.create td.heading {
	vertical-align: top;
	padding: 10px;
}

div.add_value {
	font-size: 10pt;
	margin: 0px;
    padding: 0px;
}

a.logged_in_dn {
	text-decoration: none;
	color: black;
}

a.logged_in_dn:hover {
	text-decoration: underline;
	color: blue;
}

a:hover {
	color: red;
}


/* Styles for formatting the documentation page */

h3.doc {
	margin-left: 60px;
}

h2.doc {
	margin-left: 20px;
}

p.doc {
	margin-left: 100px;
}

table.export_form {
	font-size: 75%;
	width: 400px;
    border-spacing: 10px;
    border-collapse: separate;
}

table.export_form tr td {
	text-align: left;
	vertical-align: top;
	padding: 4px;
}

img.chooser {
        /* This makes the chooser image line up properly when placed next to a form element in a table cell*/
        vertical-align: bottom;
}