Kimai time management system (PHP 5.6 / MySQL) with custom extensions: - Budget tracking (ki_budget) - Change request form (ki_changerequest) - Invoice generation (ki_invoice) - Expense tracking (ki_expenses) - Flexi time (ki_flexitime) - Export, admin panel, timesheets, tasks, summary Database: ~900K time entries, 2,000+ users, 439 projects. Config: includes/autoconf.php — localhost/kimai/kimai
50 lines
761 B
PHP
50 lines
761 B
PHP
<?php
|
|
header('Content-type: text/css');
|
|
$table_header = "../../../skins/standard/grfx/g3_table_header.png";
|
|
?>
|
|
|
|
#flexitime_ext_wrap {
|
|
border:1px solid #000;
|
|
border-top:none;
|
|
|
|
width: 98%;
|
|
left: 1%;
|
|
position:absolute;
|
|
overflow:hidden;
|
|
margin:0;
|
|
}
|
|
|
|
#flexitime_ext {
|
|
padding:10px;
|
|
|
|
background-color: #eee;
|
|
color:#000;
|
|
overflow:auto;
|
|
}
|
|
|
|
|
|
#flexitime_ext_header {
|
|
background-image: url('<?php echo $table_header; ?>');
|
|
border:1px solid #000;
|
|
color:#fff;
|
|
padding:5px 10px;
|
|
height:20px;
|
|
overflow:hidden;
|
|
position:absolute;
|
|
}
|
|
|
|
#flexitime_ext_advanced {
|
|
padding:10px;
|
|
}
|
|
|
|
#flexitime_timespan {
|
|
padding: 20px 0px;
|
|
}
|
|
|
|
|
|
|
|
#flexitime_screenshot
|
|
{
|
|
float:left;
|
|
margin-right:10px;
|
|
}
|