1/**
2 * This is the mandatory CSS file to include on top of every CSS theme file
3 **/
4
5img { border: none; }
6p.message {color: blue}
7p.comment {font-style: italic}
8.left{text-align: left}
9.pre {white-space: pre}
10
11.arg_icon {
12	padding-right:5pt;
13	padding-left:5pt;
14}
15
16/** Browser Tree using XLoadTree 2 **/
17body.browser {
18	height:	100%;
19	margin:	0px;
20	padding: 0px;
21	text-align: left;
22}
23.refreshTree {
24	float:right;
25	text-align:right;
26	padding: 0 3px;
27}
28.webfx-tree-row {white-space: nowrap}
29.webfx-tree-children {
30	background-repeat: repeat-y;
31	background-position-y: 1px !important;	/* IE only */
32}
33.webfx-tree-row img {vertical-align: middle}
34.webfx-tree-item-label {margin-left: 0.5ex}
35.webfx-tree-icon {margin-left: 1px}
36.webfx-tree-hide-root {display: none}
37
38/** auto-complete on insert **/
39#fkbg {
40	display:none;
41	position:fixed;
42	top:0;left:0;
43	width:100%;
44	height:100%;
45	z-index:10;
46}
47#fklist {
48	display:none;
49	position:absolute;
50	background:#fff;
51	border:1px solid #000;
52	overflow:auto;
53	z-index:15;
54}
55#fklist table {
56	border-collapse:collapse;
57	border: 1px solid #aaa;
58}
59#fklist th {border: 1px solid #aaa}
60#fklist td,
61#fklist th {
62	padding: 3px 10px;
63	border-right: 1px solid #aaa;
64	font-size: 12px;
65}
66#fklist td a {
67	display:block;
68	color:#000;
69}
70#fklist td a.fkval, p.errmsg {
71	color:red;
72}
73.ac_values {width:100%}
74
75/** bottom link back to top **/
76.bottom_link {
77	position: fixed;
78	bottom: 0;
79	right: 0;
80	margin: 0;
81	padding: 4px;
82	background: #eee;
83	border-top: 1px dotted #999;
84	border-left: 1px dotted #999;
85	font-size: smaller;
86}
87
88/** FK browsing **/
89div#root {
90	position: absolute;
91}
92div.fk {
93    margin-left: 20px;
94}
95div#fkcontainer {
96    margin: 0;
97    position: relative;
98    width: 100%;
99    background: none;
100    border:0px;
101}
102div.fk_value {
103	display:inline-block;
104}
105.highlight {
106	background-color: #FFFF00;
107}
108/** Syntax highlighting **/
109.comment {color: #008080}
110.keyword {color: #FF8000}
111.literal {color: #808080}
112