forked from extern/egroupware
disabling custom template color until Pixelegg supports it
This commit is contained in:
parent
d06a39a154
commit
1c29c3974a
@ -91,6 +91,7 @@ $GLOBALS['settings'] = array(
|
|||||||
'xmlrpc' => True,
|
'xmlrpc' => True,
|
||||||
'admin' => False,
|
'admin' => False,
|
||||||
),
|
),
|
||||||
|
/* disabled until Pixelegg template supports it
|
||||||
'template_color' => array(
|
'template_color' => array(
|
||||||
'type' => 'select',
|
'type' => 'select',
|
||||||
'label' => 'Template color',
|
'label' => 'Template color',
|
||||||
@ -110,7 +111,7 @@ $GLOBALS['settings'] = array(
|
|||||||
'help' => lang('Use eg. %1 or %2','#FF0000','orange'),
|
'help' => lang('Use eg. %1 or %2','#FF0000','orange'),
|
||||||
'xmlrpc' => True,
|
'xmlrpc' => True,
|
||||||
'admin' => False,
|
'admin' => False,
|
||||||
),
|
),*/
|
||||||
'navbar_format' => false, // not used in JDots (defined in common prefs)
|
'navbar_format' => false, // not used in JDots (defined in common prefs)
|
||||||
'default_app' => false, // not used in JDots, as we can have multiple tabs open ...
|
'default_app' => false, // not used in JDots, as we can have multiple tabs open ...
|
||||||
);
|
);
|
||||||
|
@ -57,4 +57,15 @@ class pixelegg_framework extends jdots_framework
|
|||||||
}
|
}
|
||||||
return parent::header($extra);
|
return parent::header($extra);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Overwrite to NOT add customizable colors from jDots
|
||||||
|
*
|
||||||
|
* @see egw_framework::_get_css()
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function _get_css()
|
||||||
|
{
|
||||||
|
return egw_framework::_get_css();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user