mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 13:03:12 +01:00
7f7e013ecf
- More space - Show type specific help in options tooltip - Disable length & rows when not needed
90 lines
1.6 KiB
CSS
90 lines
1.6 KiB
CSS
/**
|
|
* 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>
|
|
* @version $Id$
|
|
*/
|
|
|
|
.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;
|
|
}
|
|
|
|
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;
|
|
}
|
|
#admin-acl_filter {
|
|
max-width: 100% !important;
|
|
}
|
|
.admin_account_delete > * {
|
|
padding: 8px;
|
|
}
|
|
/* 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;
|
|
} |