Revize 1561
Přidáno uživatelem David Raška před více než 12 roky(ů)
freenetis/branches/testing/media/css/style.css | ||
---|---|---|
list-style: none;
|
||
border: 1px solid #ccc ! important;
|
||
background: white ! important;
|
||
margin: 0px 5px -1px 5px ! important;
|
||
margin: 0px 3px -1px 3px ! important;
|
||
padding: 5px ! important;
|
||
}
|
||
|
||
... | ... | |
|
||
#add_button, #reset_button {
|
||
cursor: pointer;
|
||
margin-right: 5px;
|
||
}
|
||
|
||
#filters {
|
freenetis/branches/testing/application/i18n/cs_CZ/texts.php | ||
---|---|---|
'reguest is invalid or expired' => 'Žádost je neplatná nebo expirovala',
|
||
'requests' => 'Požadavky',
|
||
'require mysql %s and higher' => 'potřebuje MySQL ve verzi %s nebo vyšší',
|
||
'reset_filters' => 'Vynulování filterů',
|
||
'reset_filters' => 'Vynulování filtrů',
|
||
'resize' => 'Změnit velikost',
|
||
'restore membership' => 'Obnovit členství',
|
||
'reverse dns' => 'Zpětné DNS',
|
freenetis/branches/testing/application/helpers/form.php | ||
---|---|---|
return '';
|
||
//napovedu odstranime - nechceme ji renderovat v inputu...
|
||
unset($attr['help']);
|
||
unset($attr['aditional_info']);
|
||
unset($attr['additional_info']);
|
||
|
||
if ( ! empty($attr['name']) AND
|
||
(
|
freenetis/branches/testing/application/controllers/settings.php | ||
---|---|---|
// directory is writable
|
||
if (is_writable('upload'))
|
||
{
|
||
$additional_info = '';
|
||
$logo = Settings::get('registration_logo');
|
||
|
||
if (file_exists($logo))
|
||
{
|
||
$additional_info = '<img src="'. url_lang::base().'export/logo" style="height:50px; vertical-align:middle"/>';
|
||
}
|
||
|
||
$this->form->upload('registration_logo')
|
||
->label('Logo')
|
||
->rules('allow[jpg]')
|
||
->new_name('logo.jpg')
|
||
->help(help::hint('registration_logo'))
|
||
->aditional_info('<img src="'. url_lang::base().'export/logo" style="height:50px; vertical-align:middle"/>');
|
||
->additional_info($additional_info);
|
||
}
|
||
|
||
$this->form->html_textarea('registration_info')
|
freenetis/branches/testing/application/controllers/export.php | ||
---|---|---|
{
|
||
$logo = Settings::get('registration_logo');
|
||
|
||
if (!empty($logo))
|
||
if (!empty($logo) && file_exists($logo))
|
||
{
|
||
download::force($logo);
|
||
}
|
freenetis/branches/testing/application/views/forge_template.php | ||
---|---|---|
|
||
echo $input->html();
|
||
|
||
echo $input->aditional_info;
|
||
echo $input->additional_info;
|
||
|
||
if (strstr($input->class, 'ajax'))
|
||
echo html::image(array('src'=>'media/images/icons/animations/ajax-loader.gif', 'id'=>'ajax_'.$input->name, 'class'=>'ajax-loader', 'style'=>'display:none;'));
|
Také k dispozici: Unified diff
Opravy:
- #239: Oprava nahledu loga sdruzeni
- Oprava odsazeni tabu
- Oprava odsazeni tlacitka resetu filtru