modif css

This commit is contained in:
Marion Muszynski 2016-10-19 12:51:28 +02:00
parent 47b180afb1
commit a598bb04f4
2 changed files with 3 additions and 3 deletions

View File

@ -372,8 +372,8 @@ class AdminCustomerThreads extends AdminTab
<form action="'.Tools::htmlentitiesutf8($_SERVER['REQUEST_URI']).'" method="post">
<label>'.$this->l('Subject:').'</label>
<input type="hidden" name="id_customer_message" value="'.$message['id_customer_message'].'" />
<div class="styled-select bg-purple-light semi-square">
<select name="id_contact" class="'.(!empty($message['employee_name'])?'bg-rose':'').'" onchange="this.form.submit();">';
<div class="styled-select semi-square '.(!empty($message['employee_name'])?'bg-rose':'bg-purple-light').'">
<select name="id_contact" class="" onchange="this.form.submit();">';
foreach ($contacts as $contact)
$output .= '<option value="'.(int)$contact['id_contact'].'" '.($contact['id_contact'] == $message['id_contact'] ? 'selected="selected"' : '').'>'.Tools::htmlentitiesutf8($contact['name']).'</option>';
$output .= '</select>

View File

@ -3329,7 +3329,7 @@ span.anticon{
}
.styled-select.bg-rose{
border: 1px solid #e36ea2;
background: rgba(226,110,162,0.2);
background-color: rgba(226,110,162,0.2);
}
.styled-select.bg-purple-light select,
.styled-select.bg-rose select{