mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-24 23:59:39 +01:00
Remove Add ... item from quick add box
This commit is contained in:
parent
e419b792e3
commit
e6c2b4884e
@ -5129,6 +5129,9 @@ td.message span.message {
|
|||||||
border-bottom: 12px solid #ffffff;
|
border-bottom: 12px solid #ffffff;
|
||||||
margin-bottom: 11px;
|
margin-bottom: 11px;
|
||||||
}
|
}
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_quick_add .chzn-container .chzn-single span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_quick_add select#quick_add_selectbox {
|
#egw_fw_topmenu_info_items #topmenu_info_quick_add select#quick_add_selectbox {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
@ -5118,6 +5118,9 @@ td.message span.message {
|
|||||||
border-bottom: 12px solid #ffffff;
|
border-bottom: 12px solid #ffffff;
|
||||||
margin-bottom: 11px;
|
margin-bottom: 11px;
|
||||||
}
|
}
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_quick_add .chzn-container .chzn-single span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_quick_add select#quick_add_selectbox {
|
#egw_fw_topmenu_info_items #topmenu_info_quick_add select#quick_add_selectbox {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
@ -5129,6 +5129,9 @@ td.message span.message {
|
|||||||
border-bottom: 12px solid #ffffff;
|
border-bottom: 12px solid #ffffff;
|
||||||
margin-bottom: 11px;
|
margin-bottom: 11px;
|
||||||
}
|
}
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_quick_add .chzn-container .chzn-single span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_quick_add select#quick_add_selectbox {
|
#egw_fw_topmenu_info_items #topmenu_info_quick_add select#quick_add_selectbox {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
@ -125,6 +125,7 @@ egw_LAB.wait(function() {
|
|||||||
mouseover: function(ev){
|
mouseover: function(ev){
|
||||||
// do NOT react on bubbeling events from contained selectbox
|
// do NOT react on bubbeling events from contained selectbox
|
||||||
var $select = jQuery('#quick_add_selectbox');
|
var $select = jQuery('#quick_add_selectbox');
|
||||||
|
if (!$select.children()[0]['value']) $select.children()[0].text = '';
|
||||||
var $chosen_div = $select.next();
|
var $chosen_div = $select.next();
|
||||||
if ($chosen_div.hasClass('chzn-container'))
|
if ($chosen_div.hasClass('chzn-container'))
|
||||||
{
|
{
|
||||||
@ -133,7 +134,8 @@ egw_LAB.wait(function() {
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
$select.chosen({
|
$select.chosen({
|
||||||
disable_search: true
|
disable_search: true,
|
||||||
|
display_selected_options: false
|
||||||
});
|
});
|
||||||
$chosen_div = $select.next();
|
$chosen_div = $select.next();
|
||||||
}
|
}
|
||||||
|
@ -228,6 +228,7 @@
|
|||||||
border-bottom: 12px solid #ffffff;
|
border-bottom: 12px solid #ffffff;
|
||||||
margin-bottom: 11px;
|
margin-bottom: 11px;
|
||||||
}
|
}
|
||||||
|
.chzn-single span {display: none;}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -5140,6 +5140,9 @@ td.message span.message {
|
|||||||
border-bottom: 12px solid #ffffff;
|
border-bottom: 12px solid #ffffff;
|
||||||
margin-bottom: 11px;
|
margin-bottom: 11px;
|
||||||
}
|
}
|
||||||
|
#egw_fw_topmenu_info_items #topmenu_info_quick_add .chzn-container .chzn-single span {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
#egw_fw_topmenu_info_items #topmenu_info_quick_add select#quick_add_selectbox {
|
#egw_fw_topmenu_info_items #topmenu_info_quick_add select#quick_add_selectbox {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user