2013-12-18 05:33:59 +01:00
|
|
|
/**
|
|
|
|
* EGroupware: CSS with less preprocessor
|
|
|
|
|
2014-03-19 14:20:46 +01:00
|
|
|
* ADMIN
|
2013-12-18 05:33:59 +01:00
|
|
|
*
|
|
|
|
* Please do NOT change app.css directly, instead change app.less and compile it!
|
|
|
|
*
|
|
|
|
* @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 addressbook
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
2016-02-25 09:42:33 +01:00
|
|
|
/**
|
|
|
|
* EGroupware - CSS Styles used by admin app
|
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package etemplate
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
2016-05-19 13:44:07 +02:00
|
|
|
* @version $Id$
|
2016-02-25 09:42:33 +01:00
|
|
|
*/
|
|
|
|
.admin_tree table,
|
|
|
|
.admin_tree tr,
|
|
|
|
.admin_tree td {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
div#divAppbox {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
background-image: none;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
/* otherwise it is transparent */
|
|
|
|
#admin_iframe {
|
|
|
|
background-color: white;
|
|
|
|
}
|
2017-09-19 19:11:21 +02:00
|
|
|
/** Group list */
|
2017-10-30 17:14:10 +01:00
|
|
|
@media screen {
|
|
|
|
#admin-index_groups div.innerContainer {
|
|
|
|
overflow: auto;
|
|
|
|
max-height: 7em;
|
|
|
|
}
|
2017-09-19 19:11:21 +02:00
|
|
|
}
|
2016-02-25 09:42:33 +01:00
|
|
|
tr.adminAccountInactive .adminStatus {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
.adminOverflowEllipsis {
|
|
|
|
width: 100%;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
img.admin_aclApp {
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
td.admin_userAgent {
|
|
|
|
max-width: 200px;
|
|
|
|
}
|
|
|
|
td.admin_userAgent span {
|
|
|
|
display: block;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2020-02-18 11:41:57 +01:00
|
|
|
#admin-account-delete .dialogHeader label.et2_label {
|
|
|
|
font-size: 120%;
|
|
|
|
}
|
2016-02-25 09:42:33 +01:00
|
|
|
/* Global Category classes*/
|
|
|
|
.globalCat_confirmDelete {
|
|
|
|
position: absolute;
|
|
|
|
left: 120px;
|
|
|
|
top: 80px;
|
|
|
|
background-color: white;
|
|
|
|
display: none;
|
|
|
|
border: 2px solid black;
|
|
|
|
}
|
|
|
|
.globalCat_hiddenCatid {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Custom fields list
|
|
|
|
*/
|
|
|
|
#admin-customfields_nm .values {
|
|
|
|
display: inline-block;
|
|
|
|
max-height: 13em;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
/* Set a max height for all app type options */
|
|
|
|
#admin-customfields_admin-customfields-types + table {
|
|
|
|
max-height: 300px;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
#admin-customfield_edit tr:not([class]) td {
|
|
|
|
padding: 5px 0px;
|
|
|
|
}
|
|
|
|
#admin-customfield_edit .attributes .et2_label,
|
|
|
|
#admin-customfield_edit .attributes input {
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Bulk password reset
|
|
|
|
*/
|
|
|
|
#admin-passwordreset_actions > :nth-child(2) {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* ACL popup
|
|
|
|
*/
|
|
|
|
#admin-acl_filter {
|
|
|
|
max-width: 100% !important;
|
|
|
|
}
|
2016-03-28 20:51:38 +02:00
|
|
|
/**
|
|
|
|
* mail account wizard and edit
|
|
|
|
*/
|
|
|
|
.emailadmin_manual {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.emailadmin_progress {
|
|
|
|
display: none;
|
|
|
|
padding-top: 5px;
|
|
|
|
}
|
|
|
|
.emailadmin_ssl {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
.emailadmin_port {
|
|
|
|
width: 5em;
|
|
|
|
}
|
|
|
|
.emailadmin_header {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 150%;
|
|
|
|
}
|
|
|
|
#admin-mailaccount_tabs {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
#admin-mailaccount_acc_imap_logintype {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
span.emailadmin_diagnostic,
|
|
|
|
.emailadmin_diagnostic {
|
|
|
|
color: lightgray;
|
|
|
|
}
|
|
|
|
span#admin-mailaccount_acc_id {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
#admin-mailaccount_acc_smtp_account_id {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
#admin-mailaccount_button\[multiple\] {
|
|
|
|
height: auto;
|
|
|
|
padding-left: 5px;
|
|
|
|
margin: 2px;
|
|
|
|
width: 16px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
#admin-mailaccount_button\[placeholders\] {
|
|
|
|
height: 16px;
|
|
|
|
padding-left: 5px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
#admin-mailaccount_mailLocalAddress {
|
|
|
|
width: 98%;
|
|
|
|
}
|
|
|
|
select#admin-mailaccount_ident_id {
|
|
|
|
width: 95%;
|
|
|
|
}
|
2016-04-20 20:52:55 +02:00
|
|
|
/**
|
|
|
|
* new et2 site configuration
|
|
|
|
*/
|
2021-04-09 00:52:34 +02:00
|
|
|
#admin-index_ajax_target > form[id$="-config"] tr.th > td,
|
2016-04-21 18:39:59 +02:00
|
|
|
#admin-site-config > div > span.subHeader {
|
|
|
|
border-bottom: 3px solid #696969;
|
|
|
|
padding-left: 3px;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
2021-04-09 00:52:34 +02:00
|
|
|
#admin-index_ajax_target > form[id$="-config"] tr.th > td,
|
2016-04-21 18:39:59 +02:00
|
|
|
#admin-site-config span.subHeader {
|
2016-04-20 20:52:55 +02:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 110%;
|
|
|
|
}
|
2016-05-11 18:33:54 +02:00
|
|
|
#admin-acl {
|
|
|
|
width: 99%;
|
|
|
|
}
|
2018-06-18 11:50:37 +02:00
|
|
|
#admin-categories-edit_owner {
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2021-03-31 18:52:41 +02:00
|
|
|
#admin-categories-edit_icon_url {
|
|
|
|
max-width: 32px;
|
|
|
|
}
|
2019-05-08 18:42:37 +02:00
|
|
|
/*
|
|
|
|
Admin command
|
|
|
|
*/
|
|
|
|
#admin-cmds_nm {
|
|
|
|
min-height: 100px;
|
|
|
|
}
|
|
|
|
#admin-cmds .et2_split {
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
2019-05-09 11:50:08 +02:00
|
|
|
#admin-cmds_policy_preview {
|
2019-05-08 18:42:37 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#admin-cmds div.splitter-bar-horizontal {
|
|
|
|
border-top: 1px solid #B4B4B4;
|
|
|
|
border-left: 0;
|
|
|
|
border-bottom: 0;
|
2019-05-09 15:50:10 +02:00
|
|
|
background: white;
|
2019-05-08 18:42:37 +02:00
|
|
|
}
|
2013-12-18 05:33:59 +01:00
|
|
|
@media all {
|
2014-07-16 13:29:16 +02:00
|
|
|
div.dhtmlxTree td.standartTreeRow span.selectedTreeRow {
|
2019-05-08 18:42:37 +02:00
|
|
|
background-color: rgba(102, 153, 204, 0.7);
|
2021-03-31 18:52:41 +02:00
|
|
|
color: #1e1e1e;
|
2014-07-16 13:29:16 +02:00
|
|
|
}
|
2013-12-18 05:33:59 +01:00
|
|
|
/* #############################################################################
|
2016-04-06 18:43:51 +02:00
|
|
|
// iframe
|
|
|
|
// Rahmen + padding**/
|
2013-12-18 05:33:59 +01:00
|
|
|
/*################## iframe ####################*/
|
|
|
|
/*# # #*/
|
|
|
|
/*# # #*/
|
|
|
|
/*# # ADMIN #*/
|
|
|
|
/*# # #*/
|
|
|
|
/*# # #*/
|
|
|
|
/*# # #*/
|
|
|
|
/*##############################################*/
|
|
|
|
/**
|
2016-04-06 18:43:51 +02:00
|
|
|
* Give space to both contact view & infolog list
|
|
|
|
*/
|
2013-12-19 04:14:47 +01:00
|
|
|
iframe#admin-index_iframe {
|
2014-01-14 09:20:32 +01:00
|
|
|
background-color: transparent;
|
2013-12-18 05:33:59 +01:00
|
|
|
}
|
2014-01-23 09:44:49 +01:00
|
|
|
iframe#admin-index_iframe #admin-categories-index {
|
|
|
|
padding: 10px;
|
2013-12-18 05:33:59 +01:00
|
|
|
}
|
2014-02-18 09:11:14 +01:00
|
|
|
iframe#admin-index_iframe table.egwGridView_grid tr td {
|
|
|
|
color: #000;
|
|
|
|
}
|
2014-07-16 13:29:16 +02:00
|
|
|
table.egwGridView_grid img {
|
|
|
|
/*filter grey*/
|
|
|
|
/*filter grey*/
|
2014-08-22 14:39:21 +02:00
|
|
|
filter: none;
|
|
|
|
-webkit-filter: initial;
|
|
|
|
-moz-filter: initial;
|
|
|
|
-ms-filter: initial;
|
|
|
|
-o-filter: initial;
|
2014-07-16 13:29:16 +02:00
|
|
|
/*filter: url(grayscale.svg); Firefox 4+ */
|
2014-08-22 14:39:21 +02:00
|
|
|
filter: initial;
|
2014-07-16 13:29:16 +02:00
|
|
|
/* IE 6-9 */
|
|
|
|
}
|
2020-02-17 17:43:26 +01:00
|
|
|
#admin-account-delete .dialogFooterToolbar .et2_button_delete {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2013-12-18 05:33:59 +01:00
|
|
|
}
|