Revision 752
Added by doc over 16 years ago
trunk/CHANGELOG | ||
---|---|---|
15 | 15 |
# fixed loading time and some display issues in IE6 of the new admin interface |
16 | 16 |
! tweaked the new admin interface a little bit |
17 | 17 |
12-Mar-2008 Christian Sommer |
18 |
! adjusted background color of installation and upgrade script |
|
18 | 19 |
! set version number to 2.7 (RC2) for the upcoming second release candidate |
19 | 20 |
! removed hardcoded /admin folder strings from WB core files where possible |
20 | 21 |
! added WB home folder fix proposed by the forum member spawnferkel (thanks) |
trunk/wb/upgrade-script.php | ||
---|---|---|
119 | 119 |
|
120 | 120 |
#container { |
121 | 121 |
width:85%; |
122 |
background: #9ACBF1 url(<?php echo ADMIN_URL;?>/interface/background.png) repeat-x;
|
|
122 |
background: #A8BCCB url(<?php echo ADMIN_URL;?>/interface/background.png) repeat-x;
|
|
123 | 123 |
border:1px solid #000; |
124 | 124 |
color:#000; |
125 | 125 |
margin:2em auto; |
trunk/wb/install/stylesheet.css | ||
---|---|---|
1 |
body,td,th,input,textarea { |
|
2 |
font-family: Verdana, Arial, Helvetica, sans-serif; |
|
3 |
font-size: 12px; |
|
4 |
color: #000000; |
|
5 |
} |
|
6 |
body { |
|
7 |
background-color: #9ACBF1;
|
|
8 |
background-image: url(../admin/interface/background.png); |
|
9 |
background-repeat: repeat-x; |
|
10 |
margin: 0px; |
|
11 |
} |
|
12 |
form { |
|
13 |
margin: 0; |
|
14 |
} |
|
1 |
body,td,th,input,textarea {
|
|
2 |
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
3 |
font-size: 12px;
|
|
4 |
color: #000000;
|
|
5 |
}
|
|
6 |
body {
|
|
7 |
background-color: #A8BCCB;
|
|
8 |
background-image: url(../admin/interface/background.png);
|
|
9 |
background-repeat: repeat-x;
|
|
10 |
margin: 0px;
|
|
11 |
}
|
|
12 |
form {
|
|
13 |
margin: 0;
|
|
14 |
}
|
|
15 | 15 |
|
16 | 16 |
input:focus, select:focus { |
17 | 17 |
background: #F1F8FD; |
... | ... | |
21 | 21 |
background-color: #FFDBDB; |
22 | 22 |
} |
23 | 23 |
|
24 |
.submit { |
|
25 |
border : solid 1px #CCCCCC; |
|
26 |
background: #E9ECEF; |
|
27 |
color : #003366; |
|
28 |
font-weight : bold; |
|
29 |
font-size : 11px; |
|
30 |
padding: 4px; |
|
31 |
width: 100%; |
|
32 |
} |
|
33 |
.content { |
|
34 |
background-color: #FFFFFF; |
|
35 |
padding: 15px; |
|
36 |
height: 350px; |
|
37 |
width: 750px; |
|
38 |
text-align: justify; |
|
39 |
vertical-align: top; |
|
40 |
} |
|
41 |
hr { |
|
42 |
margin: 15px 0px 15px 0px; |
|
43 |
color: #003366; |
|
44 |
height: 1px; |
|
45 |
} |
|
46 |
h1 { |
|
47 |
font-size: 15px; |
|
48 |
color: #336699; |
|
49 |
margin: 0px 0px 5px 0px; |
|
50 |
border-bottom: 1px solid #CCCCCC; |
|
51 |
} |
|
52 |
a:link, a:visited, a:active { |
|
53 |
color: #003366; |
|
54 |
text-decoration: none; |
|
55 |
} |
|
56 |
a:hover { |
|
57 |
text-decoration: none; |
|
58 |
color: #336699; |
|
59 |
} |
|
60 |
.bad { |
|
61 |
color: #FF0000; |
|
62 |
font-weight: bold; |
|
63 |
} |
|
64 |
.good { |
|
65 |
color: #009900; |
|
66 |
font-weight: bold; |
|
67 |
} |
|
68 |
.note { |
|
69 |
color: #666666; |
|
70 |
font-size: 10px; |
|
71 |
} |
|
72 |
.hide { |
|
73 |
display: none; |
|
24 |
.submit {
|
|
25 |
border : solid 1px #CCCCCC;
|
|
26 |
background: #E9ECEF;
|
|
27 |
color : #003366;
|
|
28 |
font-weight : bold;
|
|
29 |
font-size : 11px;
|
|
30 |
padding: 4px;
|
|
31 |
width: 100%;
|
|
32 |
}
|
|
33 |
.content {
|
|
34 |
background-color: #FFFFFF;
|
|
35 |
padding: 15px;
|
|
36 |
height: 350px;
|
|
37 |
width: 750px;
|
|
38 |
text-align: justify;
|
|
39 |
vertical-align: top;
|
|
40 |
}
|
|
41 |
hr {
|
|
42 |
margin: 15px 0px 15px 0px;
|
|
43 |
color: #003366;
|
|
44 |
height: 1px;
|
|
45 |
}
|
|
46 |
h1 {
|
|
47 |
font-size: 15px;
|
|
48 |
color: #336699;
|
|
49 |
margin: 0px 0px 5px 0px;
|
|
50 |
border-bottom: 1px solid #CCCCCC;
|
|
51 |
}
|
|
52 |
a:link, a:visited, a:active {
|
|
53 |
color: #003366;
|
|
54 |
text-decoration: none;
|
|
55 |
}
|
|
56 |
a:hover {
|
|
57 |
text-decoration: none;
|
|
58 |
color: #336699;
|
|
59 |
}
|
|
60 |
.bad {
|
|
61 |
color: #FF0000;
|
|
62 |
font-weight: bold;
|
|
63 |
}
|
|
64 |
.good {
|
|
65 |
color: #009900;
|
|
66 |
font-weight: bold;
|
|
67 |
}
|
|
68 |
.note {
|
|
69 |
color: #666666;
|
|
70 |
font-size: 10px;
|
|
71 |
}
|
|
72 |
.hide {
|
|
73 |
display: none;
|
|
74 | 74 |
} |
Also available in: Unified diff
adjusted background color of installation and upgrade script