mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
- Correction de quelques petites choses pour un meilleur fonctionnement sous
Opera et IE
This commit is contained in:
parent
c48a57df45
commit
5889a817a5
5 changed files with 8 additions and 4 deletions
|
@ -261,6 +261,7 @@ $GLOBALS['LSobjects']['LSeepeople'] = array (
|
|||
'required' => 1,
|
||||
'validation' => array (
|
||||
array (
|
||||
'msg' => _("Ce groupe n'existe pas."),
|
||||
'object_type' => 'LSeegroup', // 'object_type' : Permet definir le type d'objet recherchés
|
||||
//'basedn' => 'o=company', // et d'utiliser les objectClass définis dans le fichier de configuration
|
||||
'filter' => '(gidNumber=%{val})', // pour la recherche
|
||||
|
|
|
@ -95,7 +95,6 @@ ul.LSform {
|
|||
}
|
||||
|
||||
ul.LSform li {
|
||||
overflow: auto;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
|
@ -104,7 +103,7 @@ ul.LSform li {
|
|||
*/
|
||||
.LSform input[type=text], .LSform input[type=file], .LSform input[type=submit], .LSform input[type=password], .LSform select, .LSform textarea {
|
||||
border: 1px solid #ccc;
|
||||
width: 300px;
|
||||
width: 200px;
|
||||
background-color: #b5e4f6;
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ a.LSformElement_select_object_deleted {
|
|||
ul.LSformElement_select_object_edit {
|
||||
border: 1px solid #b5e4f6;
|
||||
border-bottom: none;
|
||||
width: 300px;
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
li.LSformElement_select_object {
|
||||
|
|
|
@ -187,6 +187,7 @@ var LSdefault = new Class({
|
|||
if ($type(this.LSjsConfig['helpInfos'][group][name])) {
|
||||
varLSform.addTip(el);
|
||||
el.store('tip:title',this.LSjsConfig['helpInfos'][group][name]);
|
||||
el.store('tip:text',"");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -199,6 +200,7 @@ var LSdefault = new Class({
|
|||
if ($type(this.LSjsConfig['helpInfos'][group])) {
|
||||
if ($type(this.LSjsConfig['helpInfos'][group][name])) {
|
||||
el.store('tip:title',this.LSjsConfig['helpInfos'][group][name]);
|
||||
el.store('tip:text',"");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -77,7 +77,9 @@ var LSform = new Class({
|
|||
if ($type(event)) {
|
||||
event = new Event(event);
|
||||
event.stop();
|
||||
event.target.blur();
|
||||
if ($type(event.target.blur)) {
|
||||
event.target.blur();
|
||||
}
|
||||
}
|
||||
|
||||
if (this._currentTab!=li) {
|
||||
|
|
Loading…
Reference in a new issue