mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
200 lines
6.1 KiB
JavaScript
200 lines
6.1 KiB
JavaScript
/**
|
|
* EGroupware: Stylite Pixelegg template: hiding/showing header
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @author Wolfgang Ott <wolfgang.ott@pixelegg.de>
|
|
* @package pixelegg
|
|
* @version $Id: class.pixelegg_framework.inc.php 2741 2013-11-14 13:53:24Z ralfbecker $
|
|
*/
|
|
|
|
//open
|
|
function show_pixelegg_header(_toggle, _delay)
|
|
{
|
|
jQuery("#egw_fw_header").slideToggle();
|
|
|
|
// jQuery("#egw_fw_topmenu_info_items").animate({"margin-right": "20px","bottom": "0px","padding-right" : "0", "height": "0px"},_delay);
|
|
// jQuery("#egw_fw_topmenu_info_items").css("position", "relative");
|
|
// jQuery("#egw_fw_topmenu_info_items").css("display", "flex");
|
|
// jQuery("#egw_fw_topmenu_info_items").css("float", "right");
|
|
|
|
jQuery("#egw_fw_sidebar").animate({'top':'48px'},_delay);
|
|
jQuery("#egw_fw_tabs").animate({'margin-top':'8px'},_delay);
|
|
jQuery(".egw_fw_ui_tabs_header").css("padding", "1px 1px 0px 1px");
|
|
jQuery(".egw_fw_ui_sidemenu_entry_header_active").css("background-position","95% -3000px");
|
|
jQuery(_toggle).parent().removeClass("slidedown");
|
|
jQuery(_toggle).parent().addClass("slideup");
|
|
}
|
|
|
|
//closed = Topmenu is gone
|
|
function hide_pixelegg_header(_toggle, _delay)
|
|
{
|
|
jQuery("#egw_fw_header").slideToggle();
|
|
jQuery("#egw_fw_sidebar").animate({'top':'3px'},_delay);
|
|
// jQuery("#egw_fw_topmenu_info_items").show();
|
|
jQuery("#egw_fw_logout").show();
|
|
jQuery("#egw_fw_print").show();
|
|
jQuery("#egw_fw_tabs").animate({'margin-top':'8px', "top": "0px"},_delay);
|
|
// jQuery("#egw_fw_topmenu_info_items").animate({
|
|
// "bottom": "3px",
|
|
// "right": "5px",
|
|
// "display": "flex",
|
|
// "padding-right" : "20px",
|
|
// "text-align": "right",
|
|
// "white-space": "nowrap",
|
|
// },_delay);
|
|
jQuery(".egw_fw_ui_sidemenu_entry_header_active").css("background-position","95% 50%");
|
|
|
|
// jQuery("#egw_fw_topmenu_info_items").css("position", "fixed");
|
|
// jQuery("#egw_fw_topmenu_info_items").css("z-index", "1000");
|
|
// Form - Country Switch
|
|
// jQuery("#egw_fw_topmenu_info_items form").css("display", "none");
|
|
|
|
jQuery(".egw_fw_ui_tabs_header").css("height", "34px")
|
|
// Padding to adjust for icons left & right of the tabs
|
|
.css("padding", "1px 110px 0px 20px");
|
|
|
|
|
|
//Tab
|
|
jQuery(".egw_fw_ui_tab_header").css("height", "24px");
|
|
// ICON
|
|
//jQuery(".egw_fw_ui_tab_icon").css("height", "17px");
|
|
jQuery(".egw_fw_ui_tab_icon").css("display", "inline-block");
|
|
jQuery(".egw_fw_ui_tab_icon").css("margin-right", "5px");
|
|
// H1
|
|
jQuery(".egw_fw_ui_tabs_header h1").css("float", "none");
|
|
jQuery(".egw_fw_ui_tabs_header h1").css("display", "inline");
|
|
|
|
|
|
jQuery(_toggle).parent().removeClass("slideup");
|
|
jQuery(_toggle).parent().addClass("slidedown");
|
|
}
|
|
|
|
/*
|
|
* Replace all SVG images with inline SVG
|
|
*/
|
|
function replace_svg()
|
|
{
|
|
jQuery('img.svg').each(function()
|
|
{
|
|
var $img = jQuery(this);
|
|
var imgID = $img.attr('id');
|
|
var imgClass = $img.attr('class');
|
|
var imgURL = $img.attr('src');
|
|
|
|
jQuery.get(imgURL, function(data)
|
|
{
|
|
// Get the SVG tag, ignore the rest
|
|
var $svg = jQuery(data).find('svg');
|
|
|
|
// Add replaced image's ID to the new SVG
|
|
if(typeof imgID !== 'undefined') {
|
|
$svg = $svg.attr('id', imgID);
|
|
}
|
|
// Add replaced image's classes to the new SVG
|
|
if(typeof imgClass !== 'undefined') {
|
|
$svg = $svg.attr('class', imgClass+' replaced-svg');
|
|
}
|
|
|
|
// Remove any invalid XML tags as per http://validator.w3.org
|
|
$svg = $svg.removeAttr('xmlns:a');
|
|
|
|
// Replace image with new SVG
|
|
$img.replaceWith($svg);
|
|
|
|
}, 'xml');
|
|
});
|
|
}
|
|
|
|
egw_LAB.wait(function() {
|
|
jQuery(document).ready(function() {
|
|
|
|
jQuery('#slidetoggle').click(function(){
|
|
if (jQuery('#egw_fw_header').css('display') === 'none') {
|
|
show_pixelegg_header(this, 1000);
|
|
// Check for too many tabs, and adjust width if needed
|
|
egw_getFramework().checkTabOverflow();
|
|
egw.set_preference('common', 'pixelegg_header_hidden', '');
|
|
}
|
|
else {
|
|
hide_pixelegg_header(this, 1000);
|
|
// Check for too many tabs, and adjust width if needed
|
|
egw_getFramework().checkTabOverflow();
|
|
egw.set_preference('common', 'pixelegg_header_hidden', 'true');
|
|
}
|
|
window.setTimeout(function() {
|
|
egw_getFramework().notifyTabChange();
|
|
},1000);
|
|
});
|
|
|
|
// hide header, if pref says it is not shown
|
|
if (egw.preference('pixelegg_header_hidden')) {
|
|
setTimeout(function(){hide_pixelegg_header(jQuery('#slidetoggle'),0)},1);
|
|
}
|
|
|
|
});
|
|
|
|
/**
|
|
* replace [+] on mouseover with quick-add selectbox
|
|
*
|
|
* Must run after DOM is ready!
|
|
*/
|
|
jQuery('#quick_add').on({
|
|
mouseover: function(ev){
|
|
// do NOT react on bubbeling events from contained selectbox
|
|
if (ev.relatedTarget && ev.relatedTarget.id != 'quick_add_selectbox' && ev.target.id !='quick_add_selectbox')
|
|
{
|
|
jQuery(this).css({
|
|
transition: "0.2s ease-out 0s",
|
|
width: "166px",
|
|
'border-top-left-radius': "20px",
|
|
'background-color': "#0B5FA4"
|
|
});
|
|
jQuery('select', this).css({
|
|
transition: "0.1s linear 0.2s",
|
|
visibility: "visible",
|
|
width:"120px"
|
|
});
|
|
}
|
|
ev.stopPropagation();
|
|
},
|
|
mouseout: function(ev){
|
|
// do NOT react on bubbeling events from contained selectbox
|
|
if (ev.target && ev.relatedTarget && ev.target.id != 'quick_add_selectbox'
|
|
&& ev.relatedTarget.id != 'quick_add'
|
|
&& ev.relatedTarget.id !='quick_add_selectbox'
|
|
&& ev.relatedTarget.tagName != "OPTION")
|
|
{
|
|
jQuery(this).css({
|
|
transition: "0.6s ease-out 0s",
|
|
width: "16px",
|
|
'border-top-left-radius': "0px",
|
|
'background-color': "transparent"
|
|
});
|
|
jQuery('select', this).css({
|
|
transition: "0s linear 0s",
|
|
visibility: "hidden",
|
|
width:"10px"
|
|
});
|
|
}
|
|
ev.stopPropagation();
|
|
},
|
|
focusout: function (ev)
|
|
{
|
|
jQuery(this).css({
|
|
transition: "0.6s ease-out 0s",
|
|
width: "16px",
|
|
'border-top-left-radius': "0px",
|
|
'background-color': "transparent"
|
|
});
|
|
jQuery('select', this).css({
|
|
transition: "0s linear 0s",
|
|
visibility: "hidden",
|
|
width:"10px"
|
|
});
|
|
}
|
|
});
|
|
|
|
replace_svg();
|
|
});
|