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)
57 lines
1.4 KiB
CSS
57 lines
1.4 KiB
CSS
#box-LSconfirmBox {
|
|
-moz-border-radius: 5px;
|
|
margin: auto;
|
|
position: absolute;
|
|
z-index: 4;
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #000;
|
|
min-height: 6em;
|
|
}
|
|
|
|
#title-LSconfirmBox {
|
|
width: 100%;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
padding: 0px;
|
|
padding-left: 0.5em;
|
|
margin: 0px;
|
|
opacity: 0;
|
|
}
|
|
|
|
#text-LSconfirmBox {
|
|
width: 90%;
|
|
padding: 0px 5% 0px 5%;
|
|
text-align: center;
|
|
font-size: 0.8em;
|
|
font-style: italic;
|
|
color: #fff;
|
|
opacity: 0;
|
|
}
|
|
|
|
#closeBtn-LSconfirmBox {
|
|
background: url(../images/close.png) no-repeat;
|
|
width: 20px;
|
|
height: 20px;
|
|
position: absolute;
|
|
top: -10px;
|
|
right: -10px;
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
}
|
|
|
|
#btnsBox-LSconfirmBox {
|
|
width: 100%;
|
|
text-align: center;
|
|
opacity: 0;
|
|
}
|
|
|
|
.btn-LSconfirmBox {
|
|
background-color: #fff;
|
|
-moz-border-radius: 5px;
|
|
color: #000;
|
|
font-weight: bold;
|
|
padding: 3px;
|
|
cursor: pointer;
|
|
margin: 2px;
|
|
}
|