mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-14 22:43:02 +01:00
0e84f7d284
-> Ajout d'une méthode getObjectKeyValueInRelation() et d'un paramètre 'getkeyvalue' pour LSrelation car jusqu'a présent le cas de renomage des objet en relation basé sur autre chose que le dn n'était pas géré - Rectification d'une erreur dans la css (LSform) du thème par défaut - LSsmoothobox : Rectification d'une erreur dans l'affichage de l'image de chargement - LSdefault : Rectification d'une erreur dans l'affichage des images de chargement
95 lines
1.9 KiB
CSS
95 lines
1.9 KiB
CSS
/*
|
|
******************
|
|
* LSForm
|
|
******************
|
|
*/
|
|
|
|
/*
|
|
* Architecture
|
|
*/
|
|
dl.LSform {
|
|
margin: 0;
|
|
margin-left: 2em;
|
|
padding: 0;
|
|
}
|
|
|
|
.LSform dt {
|
|
position: relative;
|
|
left: 0.2em;
|
|
top: 1.2em;
|
|
width: 15em;
|
|
font-weight: bold;
|
|
font-size: 0.9em;
|
|
color: #0072b8;
|
|
}
|
|
|
|
dd.LSform {
|
|
margin-left: 15em;
|
|
padding: 0;
|
|
}
|
|
|
|
ul.LSform {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
ul.LSform li {
|
|
overflow: auto;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
/*
|
|
* Champs du formulaire
|
|
*/
|
|
.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;
|
|
background-color: #b5e4f6;
|
|
}
|
|
|
|
.LSform input[type=radio] {
|
|
width: undefinded;
|
|
}
|
|
|
|
input[type='submit'].LSform {
|
|
border: 1px outset #ccc;
|
|
margin-top: 1em;
|
|
margin-left: 6em;
|
|
width: 8em;
|
|
}
|
|
|
|
dd.LSform-errors {
|
|
color: #fff;
|
|
background-color: #f59a67;
|
|
width: 302px;
|
|
}
|
|
|
|
dt.LSform-errors {
|
|
color: #f59a67;
|
|
}
|
|
|
|
/* Bouton JS */
|
|
img.LSform-add-field-btn, img.LSform-remove-field-btn {
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Tips */
|
|
.tip-top {
|
|
color: #fff;
|
|
width: 139px;
|
|
z-index: 13000;
|
|
}
|
|
|
|
.tip-title {
|
|
font-weight: bold;
|
|
font-size: 11px;
|
|
margin: 0;
|
|
color: #b5e4f6;
|
|
padding: 2px;
|
|
background: #333;
|
|
opacity: 0.8;
|
|
-moz-border-radius: 2px;
|
|
max-width: 500px;
|
|
text-align: justify;
|
|
}
|