mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-17 15:59:06 +01:00
- LSformElement : Correction des bugs de chargement des fichiers CSS
- base.css : min-height sur #main
This commit is contained in:
parent
6f26e868b5
commit
0c28c1f921
5 changed files with 5 additions and 4 deletions
|
@ -43,7 +43,7 @@ class LSformElement_image extends LSformElement {
|
|||
* @retval array
|
||||
*/
|
||||
function getDisplay(){
|
||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_image');
|
||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_image.css');
|
||||
$return = true;
|
||||
if (!$this -> isFreeze()) {
|
||||
$id=$this -> name.'_'.rand();
|
||||
|
|
|
@ -65,7 +65,7 @@ class LSformElement_password extends LSformElement {
|
|||
* @retval array
|
||||
*/
|
||||
function getDisplay(){
|
||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_password');
|
||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_password.css');
|
||||
$return = $this -> getLabelInfos();
|
||||
if (!$this -> isFreeze()) {
|
||||
$numberId=rand();
|
||||
|
|
|
@ -40,7 +40,7 @@ class LSformElement_select_object extends LSformElement {
|
|||
* @retval array
|
||||
*/
|
||||
function getDisplay($refresh=NULL){
|
||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_select_object');
|
||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_select_object.css');
|
||||
if ($refresh) {
|
||||
$this -> values = $this -> attr_html -> getValuesFromSession();
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ class LSformElement_ssh_key extends LSformElement {
|
|||
* @retval array
|
||||
*/
|
||||
function getDisplay(){
|
||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_ssh_key');
|
||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_ssh_key.css');
|
||||
$return = $this -> getLabelInfos();
|
||||
// value
|
||||
$return['html'] = "<ul class='LSform'>\n";
|
||||
|
|
|
@ -42,6 +42,7 @@ hr {
|
|||
margin: auto;
|
||||
border: 1px solid #52bce5;
|
||||
background: #fff url(../images/fd_menu.png) repeat-y scroll left top;
|
||||
min-height: 500px;
|
||||
}
|
||||
|
||||
#left {
|
||||
|
|
Loading…
Reference in a new issue