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
|
/* essential and basic css settings */
body {background:#fff; margin:0; padding:0;}
table {border-collapse:collapse; border-spacing:0; padding:0; margin:0; width:100%;}
table tfoot td {font-weight:700;text-align:center}
table.dBug_array {width:auto; border: 1px solid black; border-spacing:1px;}
pre,pre *,code,code *,.code {font-family:monospace !important; text-align:left; font-size:1.1em;}
pre {overflow:auto; text-align:left;}
#footer {font:10px verdana,sans-serif; color:#999; text-align:center; clear:both;}
.norecords {font-weight:bold;}
.popup {background:#fff; width:250px; border:1px solid #000; line-height:normal;}
.icon,.icon:hover,
a.icon,a.icon:hover {border:0px;}
.portrait,.avatar {float:right; padding:0 0 5px 5px;}
.menu .head {display:block; white-space:nowrap;}
.menu .item {display:block;}
.active a.head {font-weight:bolder}
.active a.head:visited {font-weight:bolder}
.highlight {font-weight:bolder;}
a.create {font-style:italic}
a.skip {position:absolute; top:0; left:-999em;}
a.skip:active,
a.skip:focus {left:0em;}
a img {border:0;}
.quicktag {margin:1px;}
.selected {font-weight:bolder}
.floaticon {float:right;}
span.actionicon {float:right;}
td.actionicon {text-align:right;}
.actionicon a,
.floaticon a {padding:0 3px;}
.navbar,
.comment,
.footer {clear:both;}
.date,
.footer,
.pagination,
small {color:#999;}
.panelsubmitrow {text-align:center;}
.pagination {text-align:center;}
.storage {float:right; clear:both; text-align:center;}
.clear {clear:both;}
/*** forms ***/
html>body textarea {width:100%;}
form {margin:0; padding:0;}
/*.row {clear:both;}*/
.formlabel {float:left; width:14em; text-align:right;}
.forminput {margin-left:14.5em;}
.formhelp {cursor:help;}
.closebutton {position:absolute; top:1px; right:1px;}
.submit {text-align:center; padding-bottom:10px;}
.minifind {width:400px;}
.error,
.warning {color:#f80;}
.success {color:#090;}
.display.confirm .body {width:450px; margin:0 auto;}
/* priorities */
.prio1 {background:#dfc !important;}
.prio2 {background:#efc !important;}
.prio3 {background:#ffc !important;}
.prio4 {background:#fec !important;}
.prio5 {background:#fdc !important;}
/* annoyances and grievances */
.module textarea {width:auto;}
.comment .content {overflow:auto;}
/* lists */
ul,ol,dl {margin-top:0; margin-bottom:0;}
.module ol,
.module ul,
.menu ul {margin:0; padding:0}
.module ol li {margin:0 0 0 3em; padding:0;}
.module ul li,
.menu li,
ul.toc li {list-style:none;}
ul.toc ul {margin-left:1.5em; padding:0;}
.navbar {height:2em;}
.navbar ul {padding:0; margin:0; list-style:none;}
.navbar ul li {float:left;}
ul.data,
ul.data li.item {list-style:none; margin:0; padding:0;}
ul.data li.item .thumb {float:right;}
ul.data h1,
/* this is needed to make floaticons clickable in data listings */
ul.data h2 {margin-top:0;}
li.error,li.success,
li.note,li.warning {list-style:none;}
ul.toc li {list-style:none;}
li.treenode {list-style:none; clear:both; border-top:1px solid #999;}
ul.tree {margin:0;padding-left:20px;}
/* structures */
.structurebar {clear:both;}
.structurebar .path {display:block;}
.gallerybar .path {display:block;}
.navigation span {display:block; width:50%; float:left;}
.navigation .right {text-align:right;}
/* multi file upload */
#fileslist span {display:block;}
#upload_div file {display:block;}
/* differences */
del {background-color:#fcc;}
ins {background-color:#cfc;}
|