source: vanHelsing/trunk/gui/WebContent/css/treeComponents.css@ 854

Last change on this file since 854 was 854, checked in by tobias, on Mar 26, 2010 at 6:01:33 PM

some beautification regarding the tree view

File size: 1.1 KB
Line 
1/* controls the appearance of links throughout the application */
2a:link, a:hover, a:visited, a:active {
3 font-family: Tahoma, Helvetica, sans-serif;
4 font-weight: normal;
5 text-decoration: none;
6 color: #000;
7}
8a:hover{
9 color: #000033;
10 text-decoration:underline
11}
12a:visited{
13 /*color: #104e5b;*/
14}
15a:active{
16 color: #318496;
17}
18
19
20html, body, div, table, img, fieldset {
21 border: 0;
22 margin: 0;
23 padding: 0;
24}
25
26html {
27 overflow: scroll;
28
29}
30
31body, pre, PRE {
32 font-family: Tahoma, Sans-Serif;
33 font-size: 11px;
34 color: #484848;
35 background-color: #ffffff;
36}
37
38/* for some reson IE things a form should have dimensions, */
39form {
40 padding: 0;
41 margin: 0;
42}
43
44table {
45 font-size: 11px;
46}
47
48ul {
49 margin-left: 15px;
50 padding: 0;
51}
52
53li {
54 list-style: none;
55 background: url( /css/images/bullet.gif' ) no-repeat 0 3px;
56 padding-left: 22px;
57 padding-bottom: 3px;
58}
59
60h2 {
61 font: 18px tahoma;
62 color: #646464;
63}
64/* START TREE */
65.selectedNodetrue span{
66 font-weight:bold;
67}
68.iceTree a:hover .iceOutTxt {
69 color: #318496;
70}
71/* END TREE */
Note: See TracBrowser for help on using the repository browser.