2014-07-24 10:27:05 +02:00
|
|
|
/**
|
|
|
|
* EGroupware: Stylite Pixelegg template
|
|
|
|
*
|
|
|
|
* Definitions for layout and raster
|
|
|
|
*
|
|
|
|
* Please do NOT change css-files directly, instead change less-files and compile them!
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @author Stefan Reinhardt <stefan.reinhardt@pixelegg.de>
|
|
|
|
* @package pixelegg
|
|
|
|
* @version $Id: layout_raster.less 3170 2014-07-16 11:24:38Z pixelegg $
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
Created on : 23.07.2014, 13:25:11
|
|
|
|
Author : stefanreinhardt
|
|
|
|
*/
|
|
|
|
|
|
|
|
@import (reference) "definitions.less";
|
|
|
|
|
|
|
|
// ##############################################################
|
|
|
|
// ## ##
|
|
|
|
// ## ##
|
|
|
|
// Scrollarea
|
|
|
|
|
|
|
|
.egw_fw_ui_scrollarea
|
|
|
|
{
|
|
|
|
overflow: hidden;
|
|
|
|
z-index: 0;
|
2016-01-28 19:17:40 +01:00
|
|
|
.background_color_0_gray;
|
2014-07-24 10:27:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.egw_fw_ui_scrollarea_button
|
|
|
|
{
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 12px;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.egw_fw_ui_scrollarea_button_up.egw_fw_ui_scrollarea_button_hover,
|
|
|
|
.egw_fw_ui_scrollarea_button_down.egw_fw_ui_scrollarea_button_hover
|
|
|
|
{
|
2019-09-24 11:41:06 +02:00
|
|
|
background-color: silver;
|
2014-07-24 10:27:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.egw_fw_ui_scrollarea_button_disabled
|
|
|
|
{
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2019-04-02 12:02:28 +02:00
|
|
|
#egw_fw_sidemenu.egw_fw_ui_scrollarea_enabled {
|
|
|
|
top: 7px !important;
|
|
|
|
.egw_fw_ui_sidemenu_entry_header_active {
|
|
|
|
position: fixed;
|
|
|
|
top: 50px;
|
|
|
|
background: white;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-24 10:27:05 +02:00
|
|
|
.egw_fw_ui_scrollarea_button_up, .egw_fw_ui_scrollarea_button_down
|
|
|
|
{
|
|
|
|
height: 14px;
|
2019-03-21 16:31:41 +01:00
|
|
|
background-image:none;
|
2014-07-24 10:27:05 +02:00
|
|
|
background-color: white;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.egw_fw_ui_scrollarea_button_up
|
|
|
|
{
|
2019-09-24 11:41:06 +02:00
|
|
|
height: 35px;
|
2014-07-24 10:27:05 +02:00
|
|
|
top: 0px;
|
2017-06-28 10:42:45 +02:00
|
|
|
border-bottom: 1px solid silver;
|
2024-09-13 11:49:09 +02:00
|
|
|
background-image: url(../../node_modules/bootstrap-icons/icons/arrow-bar-up.svg);
|
2019-09-24 11:41:06 +02:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
2019-10-08 14:32:43 +02:00
|
|
|
background-position-y: 5px;
|
|
|
|
background-size: 24px;
|
2014-07-24 10:27:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.egw_fw_ui_scrollarea_button_down
|
|
|
|
{
|
|
|
|
bottom: 0px;
|
2019-09-24 11:41:06 +02:00
|
|
|
height: 35px;
|
|
|
|
border-top: 1px solid silver;
|
2024-09-12 16:18:55 +02:00
|
|
|
background-image: url(../../node_modules/bootstrap-icons/icons/arrow-bar-down.svg);
|
2019-09-24 11:41:06 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2019-10-08 14:32:43 +02:00
|
|
|
background-position-y: 6px;
|
|
|
|
background-size: 24px;
|
2014-07-24 10:27:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.egw_fw_ui_scrollarea_outerdiv
|
|
|
|
{
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.egw_fw_content_browser_div {
|
|
|
|
display: block;
|
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: auto;
|
2016-01-28 19:17:40 +01:00
|
|
|
padding-right:10px;
|
2014-07-24 10:27:05 +02:00
|
|
|
/* background-color: RGB(240, 240, 255);*/
|
|
|
|
}
|
|
|
|
|
|
|
|
.egw_fw_content_browser_div_loading {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1000;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
.dimension_width_height_s;
|
2022-07-31 10:25:01 +02:00
|
|
|
background-image: url(../../api/templates/default/images/ajax-loader.gif);
|
2014-07-24 10:27:05 +02:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
2024-09-12 16:18:55 +02:00
|
|
|
}
|