-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzimbra.more.space.user.js
99 lines (86 loc) · 3.33 KB
/
zimbra.more.space.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// ==UserScript==
// @name Zimbra webclient improvement: More space!
// @namespace http://thomas-rosenau.de
// @description Removes titlebar and the "Tag" and "Search" shortcuts
// @include INSERT.URL.HERE
// @version 2
// ==/UserScript==
/*!
Copyright 2015 SEITENBAU GmbH
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
(function (main) {
if (window == window.top && !document.querySelector('.LoginScreen')) {
// http://stackoverflow.com/a/5006952/27862
var script = document.createElement('script');
script.textContent = 'try{(' + main + ')();}catch(e){console.log(e);}';
document.body.appendChild(script).parentNode.removeChild(script);
}
})(function () {
var removeSeachAndTags = function () {
var removeIds = [
'main_Mail-parent-SEARCH',
'main_Mail-parent-TAG',
'main_Contacts-parent-SEARCH',
'main_Contacts-parent-TAG',
'main_Calendar-parent-SEARCH',
'main_Calendar-parent-TAG',
'main_Tasks-parent-SEARCH',
'main_Tasks-parent-TAG'
];
var style = document.createElement('style');
style.type = 'text/css';
var content = '';
removeIds.forEach(function (id) {
content += '#' + id + '{display:none;}';
});
style.innerHTML = content;
document.head.appendChild(style);
};
var moveSeachBar = function () {
var td = document.createElement('td');
td.id = 'sbsearch';
td.style.paddingRight = '10px';
td.appendChild(document.getElementById('skin_container_search'));
var div = document.createElement('div');
div.className = 'divider';
td.appendChild(div);
var btnEl = document.getElementById('skin_spacing_global_buttons');
btnEl.parentNode.insertBefore(td, btnEl);
};
var triggerResize = function () {
var t = DwtControl.fromElementId(window._dwtShellId);
var e = DwtShell.controlEvent;
e.reset();
e.oldWidth = t._currWinSize.x;
e.oldHeight = t._currWinSize.y;
t.notifyListeners(DwtEvent.CONTROL, e)
};
var moveUser = function () {
var td = document.createElement('td');
td.appendChild(document.getElementById('skin_userAndQuota'));
td.appendChild(document.getElementById('skin_dropMenu'));
var btnEl = document.getElementById('skin_spacing_global_buttons');
btnEl.parentNode.insertBefore(td, btnEl);
};
removeSeachAndTags();
var intervalId = window.setInterval(function () {
var toolbar = document.querySelector('#skin_spacing_top_row tr');
if (!toolbar) {
return;
}
window.clearInterval(intervalId);
moveSeachBar();
moveUser();
toolbar.parentNode.removeChild(toolbar);
triggerResize();
});
})();