mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-27 00:09:13 +01:00
addressbook view sidemenu contact data styling changes
This commit is contained in:
parent
e26f1f5b4a
commit
f705383ecf
@ -300,7 +300,7 @@ class AddressbookApp extends EgwApp
|
|||||||
extras.crm_list = <string>egw.preference('crm_list', 'addressbook');
|
extras.crm_list = <string>egw.preference('crm_list', 'addressbook');
|
||||||
}
|
}
|
||||||
const title_app = extras.crm_list == "tracker" ? " (" + egw.lang(extras.crm_list) + ")" : "";
|
const title_app = extras.crm_list == "tracker" ? " (" + egw.lang(extras.crm_list) + ")" : "";
|
||||||
extras.title = ((_action.id.match(/\-organisation/) || extras.crm_list.endsWith("-organisation")) && data.org_name != "")
|
extras.title = ((_action.id.match(/\-organisation/) || extras.crm_list?.endsWith("-organisation")) && data.org_name != "")
|
||||||
? data.org_name
|
? data.org_name
|
||||||
: data.n_fn + title_app;
|
: data.n_fn + title_app;
|
||||||
extras.icon = data.photo;
|
extras.icon = data.photo;
|
||||||
|
@ -51,10 +51,10 @@
|
|||||||
</row>
|
</row>
|
||||||
<row class="toolbox">
|
<row class="toolbox">
|
||||||
<et2-hbox>
|
<et2-hbox>
|
||||||
<et2-button id="button[edit]" label="open" image="edit" onclick="app.addressbook.view_actions"></et2-button>
|
<et2-button id="button[edit]" statustext="open" image="edit" onclick="app.addressbook.view_actions"></et2-button>
|
||||||
<et2-button id="button[copy]" label="copy" image="copy" onclick="app.addressbook.view_actions"></et2-button>
|
<et2-button id="button[copy]" statustext="copy" image="copy" onclick="app.addressbook.view_actions"></et2-button>
|
||||||
<et2-button id="button[close]" statustext="close" readonly="false" image="close" onclick="app.addressbook.view_actions"></et2-button>
|
<et2-button id="button[close]" statustext="close" readonly="false" image="close" onclick="app.addressbook.view_actions"></et2-button>
|
||||||
<et2-button id="button[delete]" label="delete" image="delete" onclick="app.addressbook.view_actions" noSubmit="true"></et2-button>
|
<et2-button id="button[delete]" statustext="delete" image="delete" onclick="app.addressbook.view_actions" noSubmit="true"></et2-button>
|
||||||
</et2-hbox>
|
</et2-hbox>
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
|
@ -6869,6 +6869,13 @@ table.egwGridView_grid img.et2_appicon {
|
|||||||
border-top-color: #003366;
|
border-top-color: #003366;
|
||||||
border-top-width: 4px !important;
|
border-top-width: 4px !important;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
Addressbook sidebox grid table
|
||||||
|
*/
|
||||||
|
#egw_fw_sidemenu table.addressbook_view {
|
||||||
|
table-layout: fixed;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
#egw_fw_basecontainer.egw_fw_sidebar_toggleOn #admin_sidebox_header.egw_fw_ui_sidemenu_entry_header_active {
|
#egw_fw_basecontainer.egw_fw_sidebar_toggleOn #admin_sidebox_header.egw_fw_ui_sidemenu_entry_header_active {
|
||||||
background-color: rgba(51, 51, 51, 0.3);
|
background-color: rgba(51, 51, 51, 0.3);
|
||||||
border-left: 4px solid #333333 !important;
|
border-left: 4px solid #333333 !important;
|
||||||
|
@ -6862,6 +6862,13 @@ table.egwGridView_grid img.et2_appicon {
|
|||||||
border-top-color: #003366;
|
border-top-color: #003366;
|
||||||
border-top-width: 4px !important;
|
border-top-width: 4px !important;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
Addressbook sidebox grid table
|
||||||
|
*/
|
||||||
|
#egw_fw_sidemenu table.addressbook_view {
|
||||||
|
table-layout: fixed;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
#egw_fw_basecontainer.egw_fw_sidebar_toggleOn #admin_sidebox_header.egw_fw_ui_sidemenu_entry_header_active {
|
#egw_fw_basecontainer.egw_fw_sidebar_toggleOn #admin_sidebox_header.egw_fw_ui_sidemenu_entry_header_active {
|
||||||
background-color: rgba(51, 51, 51, 0.3);
|
background-color: rgba(51, 51, 51, 0.3);
|
||||||
border-left: 4px solid #333333 !important;
|
border-left: 4px solid #333333 !important;
|
||||||
|
@ -131,6 +131,14 @@
|
|||||||
border-top-color: @addressbook-color;
|
border-top-color: @addressbook-color;
|
||||||
border-top-width: 4px !important;
|
border-top-width: 4px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Addressbook sidebox grid table
|
||||||
|
*/
|
||||||
|
#egw_fw_sidemenu table.addressbook_view{
|
||||||
|
table-layout: fixed;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
// Admin
|
// Admin
|
||||||
#egw_fw_basecontainer.egw_fw_sidebar_toggleOn #admin_sidebox_header.egw_fw_ui_sidemenu_entry_header_active {
|
#egw_fw_basecontainer.egw_fw_sidebar_toggleOn #admin_sidebox_header.egw_fw_ui_sidemenu_entry_header_active {
|
||||||
background-color: fade(@admin-color, 30%);
|
background-color: fade(@admin-color, 30%);
|
||||||
|
Loading…
Reference in New Issue
Block a user