Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 2280 → Rev 2281

/web/acc/manager/stats/config.php
87,7 → 87,7
define('SVG_FONT', 'Verdana');
 
// Default theme
define('DEFAULT_COLORSCHEME', 'light');
define('DEFAULT_COLORSCHEME', 'alcasar');
// SVG Depth scaling factor
define('SVG_DEPTH_SCALING', 1);
/web/acc/manager/stats/themes/alcasar/style.css
0,0 → 1,185
body
{
margin: 0;
padding: 0;
background-color: #efefef;
}
 
a[href]:link,
a[href]:visited {
color: #00f;
text-decoration: none;
}
a[href]:hover,
a[href]:active,
a[href]:focus {
color: #c00;
text-decoration: none;
}
 
#wrap
{
xwidth: 868px;
}
 
#sidebar
{
width: 160px;
border-right: 1px solid #99b;
border-collapse: collapse;
float: left;
}
 
#sidebar ul.iface
{
margin: 0;
padding: 0;
border-top: 1px solid #99b;
color: #000;
background-color: #eef;
}
 
#sidebar li.iface ul
{
display: none;
}
#sidebar li.iface.active ul
{
display: block;
}
#sidebar li.iface:hover ul
{
display: block;
}
#sidebar li.iface
{
margin: 2px;
padding: 0;
list-style-type: none;
font-size: 12px;
font-weight: bold;
xborder-top: 1px solid #99b;
border-bottom: 1px solid #99b;
}
 
#sidebar a
{
font-family: 'Trebuchet MS', Verdana, sans-serif;
font-size: 1em;
font-weight: bold;
}
 
#sidebar ul.page
{
margin: 0;
padding: 0;
border-top: 1px solid #99b;
}
 
#sidebar li.page
{
margin: 0;
padding: 4px;
border: none;
list-style-type: none;
font-family: 'Trebuchet MS', Verdana, sans-serif;
font-size: 0.75em;
font-weight: normal;
text-align: right;
color: #000;
background-color: #fff;
}
 
#content
{
margin-left: 160px;
width: 720px;
background-color: #fff;
}
 
 
#header
{
padding: 0px 8px 0px 8px;
border-width: 1px;
border-style: solid solid solid solid;
border-color: #99b;
border-collapse: collapse;
color: #000;
background-color: #eef;
font-family: 'Trebuchet MS', Verdana, sans-serif;
font-size: 1em;
font-weight: bold;
text-align: center;
}
 
#footer
{
padding: 2px 8px 2px 8px;
border: 1px solid #99b;
border-collapse: collapse;
color: #000;
background-color: #eef;
font-family: 'Trebuchet MS', Verdana, sans-serif;
font-size: 0.65em;
font-weight: bold;
text-align: center;
}
 
#main
{
padding: 8px;
border-left: 1px solid #99b;
border-right: 1px solid #99b;
border-bottom: 1px solid #99b;
border-collapse: collapse;
}
 
#main td
{
font-family: 'Trebuchet MS', Verdana, sans-serif;
font-size: 0.8em;
}
 
#main td.numeric_odd
{
text-align: right;
color: #000;
background-color: #eef;
}
 
#main td.numeric_even
{
text-align: right;
color: #000;
background-color: #fff;
}
 
#main td.label_odd
{
color: #000;
background-color: #dde;
}
 
#main td.label_even
{
color: #000;
background-color: #eee;
}
 
#main th.label
{
font-family: 'Trebuchet MS', Verdana, sans-serif;
font-size: 1em;
font-weight: bold;
color: #000;
background-color: #dde;
}
 
#main caption
{
font-family: 'Trebuchet MS', Verdana, sans-serif;
font-size: 1.25em;
font-weight: bold;
padding: 4px;
}
/web/acc/manager/stats/themes/alcasar/theme.php
0,0 → 1,15
<?php
 
$colorscheme = [
'image_background' => [ 255, 255, 255, 0 ],
'graph_background' => [ 220, 220, 230, 0 ],
'graph_background_2' => [ 205, 205, 220, 0 ],
'grid_stipple_1' => [ 140, 140, 140, 0 ],
'grid_stipple_2' => [ 200, 200, 200, 0 ],
'border' => [ 0, 0, 0, 0 ],
'text' => [ 0, 0, 0, 0 ],
'rx' => [ 190, 190, 20, 50 ],
'rx_border' => [ 40, 80, 40, 90 ],
'tx' => [ 130, 160, 100, 50 ],
'tx_border' => [ 80, 40, 40, 90 ]
];