mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-16 15:33:02 +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
|
* @retval array
|
||||||
*/
|
*/
|
||||||
function getDisplay(){
|
function getDisplay(){
|
||||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_image');
|
$GLOBALS['LSsession'] -> addCssFile('LSformElement_image.css');
|
||||||
$return = true;
|
$return = true;
|
||||||
if (!$this -> isFreeze()) {
|
if (!$this -> isFreeze()) {
|
||||||
$id=$this -> name.'_'.rand();
|
$id=$this -> name.'_'.rand();
|
||||||
|
|
|
@ -65,7 +65,7 @@ class LSformElement_password extends LSformElement {
|
||||||
* @retval array
|
* @retval array
|
||||||
*/
|
*/
|
||||||
function getDisplay(){
|
function getDisplay(){
|
||||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_password');
|
$GLOBALS['LSsession'] -> addCssFile('LSformElement_password.css');
|
||||||
$return = $this -> getLabelInfos();
|
$return = $this -> getLabelInfos();
|
||||||
if (!$this -> isFreeze()) {
|
if (!$this -> isFreeze()) {
|
||||||
$numberId=rand();
|
$numberId=rand();
|
||||||
|
|
|
@ -40,7 +40,7 @@ class LSformElement_select_object extends LSformElement {
|
||||||
* @retval array
|
* @retval array
|
||||||
*/
|
*/
|
||||||
function getDisplay($refresh=NULL){
|
function getDisplay($refresh=NULL){
|
||||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_select_object');
|
$GLOBALS['LSsession'] -> addCssFile('LSformElement_select_object.css');
|
||||||
if ($refresh) {
|
if ($refresh) {
|
||||||
$this -> values = $this -> attr_html -> getValuesFromSession();
|
$this -> values = $this -> attr_html -> getValuesFromSession();
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,7 @@ class LSformElement_ssh_key extends LSformElement {
|
||||||
* @retval array
|
* @retval array
|
||||||
*/
|
*/
|
||||||
function getDisplay(){
|
function getDisplay(){
|
||||||
$GLOBALS['LSsession'] -> addCssFile('LSformElement_ssh_key');
|
$GLOBALS['LSsession'] -> addCssFile('LSformElement_ssh_key.css');
|
||||||
$return = $this -> getLabelInfos();
|
$return = $this -> getLabelInfos();
|
||||||
// value
|
// value
|
||||||
$return['html'] = "<ul class='LSform'>\n";
|
$return['html'] = "<ul class='LSform'>\n";
|
||||||
|
|
|
@ -42,6 +42,7 @@ hr {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
border: 1px solid #52bce5;
|
border: 1px solid #52bce5;
|
||||||
background: #fff url(../images/fd_menu.png) repeat-y scroll left top;
|
background: #fff url(../images/fd_menu.png) repeat-y scroll left top;
|
||||||
|
min-height: 500px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#left {
|
#left {
|
||||||
|
|
Loading…
Reference in a new issue