mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-19 16:49:06 +01:00
8d8ede930c
-> config.inc.php : - Deux fichiers js à include au lieu d'un seul - Suppression du Debugger (Debugger.js incompatible) - LSformElement_image : refonte de l'affichage - Templates : - LSview-action : Passage aux balises ul/li plutôt que p/a - select.tpl : correction d'un bug concernant la sélection du subDn actif - Création de LSconfirmBox : module de confirmation - JS : -> LSform.js : Modularisation du code : - LSformElement_select_object.js - LSformElement_image.js - LSformElement_password.js - CSS : -> Modularisation : - LSselect.css - LSrelation.css - LSrelation : -> Refonte du mécanisme JS -> Modification de l'affichage -> Ajout d'une confirmation à la suppresion (LSconfirmBox) - LSsmoothbox : Refonte profonde - view.php : - Correction d'un bug : la colone action était vide lors de la mise en cache par LSselect. - LSldapObject : - getDisplayValue() : ajout d'une possibilité de l'affichage du subDn en plus du nom - LSsession : ajout d'un méthode haveSubDn() - JS : - Modularisation de la verification d'une requete Ajax -> LSdefault : nouvelles méthodes : -> checkAjaxReturn() : Pour les retours JSON -> ajaxDisplayDebugAndError() : Pour les retours HTML (Type LSselect)
55 lines
1.3 KiB
CSS
55 lines
1.3 KiB
CSS
#over-LSsmoothbox {
|
|
background-color: #000;
|
|
border: 1px solid #000;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#win-LSsmoothbox {
|
|
background-color: #fff;
|
|
border: 10px solid #000;
|
|
-moz-border-radius: 5px;
|
|
margin: auto;
|
|
position: absolute;
|
|
z-index: 3;
|
|
display: none;
|
|
}
|
|
|
|
#frame-LSsmoothbox {
|
|
overflow: auto;
|
|
height: 100%;
|
|
width: 100%;
|
|
display: none;
|
|
}
|
|
|
|
#closeBtn-LSsmoothbox {
|
|
background: url(../images/close.png) no-repeat;
|
|
width: 20px;
|
|
height: 20px;
|
|
position: absolute;
|
|
top: -20px;
|
|
right: -20px;
|
|
cursor: pointer;
|
|
display: none;
|
|
}
|
|
|
|
#validBtn-LSsmoothbox {
|
|
background-color: #000;
|
|
-moz-border-radius: 5px;
|
|
height: 22px;
|
|
font-size: 18px;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
padding: 0px 5px 0px 5px;
|
|
position: absolute;
|
|
bottom: -25px;
|
|
right: 20px;
|
|
cursor: pointer;
|
|
display: none;
|
|
}
|
|
|
|
#loadingImage-LSsmoothbox {
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: 10px;
|
|
}
|