mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-19 16:49:06 +01:00
d42aef9e4d
- LSattr_html_select_object : Correction d'un problème de chargement de de type d'objet - LSformElement_select : Affichage d'un texte lorsque l'attribut n'a pas de valeur - LSformElement_text : -> Ajout d'une possibilité de suppression des accents lors de l'autogénération -> Ajout d'un bouton pour l'autogénération manuelle - LSaddons.supann : Ajout d'un addon pour le support Suppan - LSsmoothbox : Affichage d'une image durant l'ouverture d'une page
90 lines
1.8 KiB
CSS
90 lines
1.8 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;
|
|
}
|
|
|
|
.LSform-errors {
|
|
color: #fff;
|
|
background-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;
|
|
}
|