Commit c9875309cc7af1d96fd191cddd777f028c9934c3

Authored by michaeljoseph
1 parent a95cbe36

Added explicit background colour and formatted.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2910 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/stylesheet.php
... ... @@ -2,62 +2,64 @@
2 2 require("../../../config/dmsDefaults.php");
3 3 header("Content-type: text/css");
4 4 ?>
  5 +BODY {
  6 + background: #ffffff;
  7 +}
  8 +
5 9 P {
6   -font-size : 9pt;
7   -font-family : Verdana, sans-serif;
8   -font-weight : lighter;
9   -font-style : normal;
10   -color : #000000;
11   -text-decoration: none;
  10 + font-size : 9pt;
  11 + font-family : Verdana, sans-serif;
  12 + font-weight : lighter;
  13 + font-style : normal;
  14 + color : #000000;
  15 + text-decoration: none;
12 16 }
13 17  
14 18 P.footer {
15   -font-size : 9pt;
16   -font-family : Verdana, sans-serif;
17   -font-weight : lighter;
18   -font-style : normal;
19   -color : #999999;
20   -text-decoration: none;
  19 + font-size : 9pt;
  20 + font-family : Verdana, sans-serif;
  21 + font-weight : lighter;
  22 + font-style : normal;
  23 + color : #999999;
  24 + text-decoration: none;
21 25 }
22 26  
23 27 P.title {
24   -font-size : 9pt;
25   -font-family : Verdana, sans-serif;
26   -font-weight : inherit;
27   -font-style : normal;
28   -color : #ffffff;
29   -text-decoration: none;
  28 + font-size : 9pt;
  29 + font-family : Verdana, sans-serif;
  30 + font-weight : inherit;
  31 + font-style : normal;
  32 + color : #ffffff;
  33 + text-decoration: none;
30 34 }
31 35  
32   -
33 36 A {
34   -font-size : 8pt;
35   -font-family : Verdana, sans-serif;
36   -text-decoration: none;
37   -color : #000000;
  37 + font-size : 8pt;
  38 + font-family : Verdana, sans-serif;
  39 + text-decoration: none;
  40 + color : #000000;
38 41 }
39 42  
40   -
41 43 A:Visited {
42   -font-size : 8pt;
43   -font-family : Verdana, sans-serif;
44   -font-style : normal;
45   -color : #000000;
  44 + font-size : 8pt;
  45 + font-family : Verdana, sans-serif;
  46 + font-style : normal;
  47 + color : #000000;
46 48 }
47 49  
48 50 A:Active {
49   -color : #000000;
50   -font-size : 8pt;
51   -font-family : Verdana, sans-serif;
52   -font-style : normal;
  51 + color : #000000;
  52 + font-size : 8pt;
  53 + font-family : Verdana, sans-serif;
  54 + font-style : normal;
53 55 }
54 56  
55 57 A:hover {
56   -color : #000000;
57   -font-size : 8pt;
58   -font-family : Verdana,sans-serif;
59   -font-style : normal;
60   -text-decoration: underline;
  58 + color : #000000;
  59 + font-size : 8pt;
  60 + font-family : Verdana,sans-serif;
  61 + font-style : normal;
  62 + text-decoration: underline;
61 63 }
62 64  
63 65 TABLE {
... ... @@ -80,20 +82,20 @@ TH {
80 82 }
81 83  
82 84 TH.sectionHeading {
83   -font-size : 10 pt;
84   -font-family : Verdana, sans-serif;
85   -font-style : normal;
86   -color : #ffffff;
87   -text-decoration: none;
  85 + font-size : 10 pt;
  86 + font-family : Verdana, sans-serif;
  87 + font-style : normal;
  88 + color : #ffffff;
  89 + text-decoration: none;
88 90 }
89 91  
90 92 TH.sectionColumns {
91   -font-size : 8pt;
92   -font-family : Verdana, sans-serif;
93   -font-weight : lighter;
94   -font-style : normal;
95   -color : #000000;
96   -text-decoration: none;
  93 + font-size : 8pt;
  94 + font-family : Verdana, sans-serif;
  95 + font-weight : lighter;
  96 + font-style : normal;
  97 + color : #000000;
  98 + text-decoration: none;
97 99 }
98 100  
99 101 .browseTypeSelect {
... ... @@ -122,12 +124,14 @@ SELECT {
122 124 #divUp {
123 125 position:absolute;
124 126 left: <?php echo $default->upArrowLeft ?>px;
125   - top: <?php echo $default->upArrowTop ?>px;}
  127 + top: <?php echo $default->upArrowTop ?>px;
  128 +}
126 129  
127 130 #divDown {
128 131 position:absolute;
129 132 left: <?php echo $default->downArrowLeft ?>px;
130   - top: <?php echo $default->downArrowTop ?>px;}
  133 + top: <?php echo $default->downArrowTop ?>px;
  134 +}
131 135  
132 136 #divScrollTextCont {
133 137 position:absolute;
... ...