mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:29 +01:00
allow to use Api\Framework::bodyClass('scrollVertical') to enable vertical scrolling on body e.g. for old admin stuff like async service
This commit is contained in:
parent
f215a99918
commit
0b9f7b7509
@ -29,6 +29,7 @@ class admin_asyncservice
|
||||
}
|
||||
$GLOBALS['egw_info']['flags']['app_header'] = lang('Admin').' - '.lang('Asynchronous timed services');
|
||||
|
||||
Api\Framework::bodyClass('scrollVertical');
|
||||
echo $GLOBALS['egw']->framework->header();
|
||||
|
||||
$async = new Api\Asyncservice(); // use an own instance, as we might set debug=True
|
||||
@ -215,4 +216,4 @@ class admin_asyncservice
|
||||
_egw_log_exception($e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -4224,6 +4224,12 @@ span.overlayContainer img.overlay {
|
||||
width: 100%;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
/**
|
||||
* allow to use Api\Framework::bodyClass('scrollVertical'); to enable scrolling of body
|
||||
*/
|
||||
body.scrollVertical {
|
||||
overflow-y: auto;
|
||||
}
|
||||
/**
|
||||
* EGroupware: Stylite Pixelegg template
|
||||
*
|
||||
|
@ -4204,6 +4204,12 @@ span.overlayContainer img.overlay {
|
||||
width: 100%;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
/**
|
||||
* allow to use Api\Framework::bodyClass('scrollVertical'); to enable scrolling of body
|
||||
*/
|
||||
body.scrollVertical {
|
||||
overflow-y: auto;
|
||||
}
|
||||
/**
|
||||
* EGroupware: Stylite Pixelegg template
|
||||
*
|
||||
@ -6584,4 +6590,4 @@ span.egw_tutorial_title {
|
||||
/*@import "../less/layout_raster.less";*/
|
||||
/*@import "../less/layout_nextmatch.less";*/
|
||||
/*@import "../less/layout_footer.less";*/
|
||||
/*@import "../less/layout_dialog.less";*/
|
||||
/*@import "../less/layout_dialog.less";*/
|
@ -4214,6 +4214,12 @@ span.overlayContainer img.overlay {
|
||||
width: 100%;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
/**
|
||||
* allow to use Api\Framework::bodyClass('scrollVertical'); to enable scrolling of body
|
||||
*/
|
||||
body.scrollVertical {
|
||||
overflow-y: auto;
|
||||
}
|
||||
/**
|
||||
* EGroupware: Stylite Pixelegg template
|
||||
*
|
||||
|
@ -39,3 +39,9 @@
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/**
|
||||
* allow to use Api\Framework::bodyClass('scrollVertical'); to enable scrolling of body
|
||||
*/
|
||||
body.scrollVertical {
|
||||
overflow-y: auto;
|
||||
}
|
@ -4235,6 +4235,12 @@ span.overlayContainer img.overlay {
|
||||
width: 100%;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
/**
|
||||
* allow to use Api\Framework::bodyClass('scrollVertical'); to enable scrolling of body
|
||||
*/
|
||||
body.scrollVertical {
|
||||
overflow-y: auto;
|
||||
}
|
||||
/**
|
||||
* EGroupware: Stylite Pixelegg template
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user