fix conflicts
This commit is contained in:
commit
ede0f691a8
@ -20,6 +20,12 @@ hr {
|
||||
color: #565485;
|
||||
background: rgba(86,84,133,0.9);
|
||||
}
|
||||
.bg-purple{
|
||||
background: rgba(86,84,133,0.9);
|
||||
}
|
||||
.bg-purple-lite{
|
||||
background: rgba(86,84,133,0.3);
|
||||
}
|
||||
.table {
|
||||
border: 1px solid #565485;
|
||||
}
|
||||
@ -73,6 +79,11 @@ input[type="file"], textarea, select {
|
||||
.button:focus{
|
||||
background-color: rgba(86,84,133,0.6);
|
||||
}
|
||||
.button[disabled=disabled],
|
||||
input.button[disabled=disabled]:hover{
|
||||
color: #EEE;
|
||||
background-color: rgba(86,84,133,0.3);
|
||||
}
|
||||
|
||||
/*** Philea ***/
|
||||
.div_report {
|
||||
|
@ -169,7 +169,7 @@ class AdminQuestions extends AdminTab
|
||||
$question->status = Tools::getValue('status', 0);
|
||||
$question->id_section = Tools::getValue('id_section', 0);
|
||||
$question->versions = array();
|
||||
|
||||
|
||||
foreach(Language::getLanguages(false) as $language) {
|
||||
if($title = Tools::getValue('title_'.$language['id_lang'])) {
|
||||
$question->title[$language['id_lang']] = $title;
|
||||
|
@ -14,7 +14,7 @@ class AdminSections extends AdminTab
|
||||
public function __construct()
|
||||
{
|
||||
global $cookie;
|
||||
|
||||
|
||||
$this->table = 'support_section';
|
||||
$this->className = 'Section';
|
||||
$this->lang = true;
|
||||
@ -166,7 +166,7 @@ class AdminSections extends AdminTab
|
||||
$section = new Section();
|
||||
$section->status = Tools::getValue('status', 0);
|
||||
$section->versions = array();
|
||||
|
||||
|
||||
foreach(Language::getLanguages(false) as $language) {
|
||||
if($title = Tools::getValue('title_'.$language['id_lang'])) {
|
||||
$section->title[$language['id_lang']] = $title;
|
||||
|
@ -51,6 +51,7 @@ class AdminSupport extends AdminTab
|
||||
url_ajax_admin_support = "'.__PS_BASE_URI__.'modules/ant_support/ajax_admin_support.php?&token='.Tools::getAdminTokenLite('AdminSupport').'";
|
||||
</script>';
|
||||
echo '<style type="text/css">
|
||||
@import "'.__PS_BASE_URI__.'css/custom_admin.css";
|
||||
.green {
|
||||
background : #dffad3;
|
||||
}
|
||||
|
@ -43,5 +43,6 @@
|
||||
|
||||
<li><a href="{$base_dir_ssl}modules/paymentinfo/manage.php" title="{l s='Manage Payments infos'}">{l s='Manage Payments infos'}</a></li>
|
||||
{$HOOK_CUSTOMER_ACCOUNT}
|
||||
<li><a href="{$base_dir_ssl}modules/ant_support/help.php" title="{l s='Help'}">{l s='Help'}</a></li>
|
||||
</ul>
|
||||
{*<p class="footer_links"><a href="{$base_dir}" title="{l s='Home'}" class="button">{l s='Home'}</a></p>*}
|
||||
|
Loading…
Reference in New Issue
Block a user