forked from extern/egroupware
Nm resize fix:
- Fix dataview grid resize not taking care of category color border - Fix Category borders make headers misaligned
This commit is contained in:
parent
16bf89faa6
commit
d290485058
@ -119,3 +119,4 @@ select#addressbook-index_col_filter\[tid\] {
|
||||
float: right;
|
||||
width: 134px;
|
||||
}
|
||||
#addressbook-index_nm.et2_nextmatch .egwGridView_outer thead tr {border-left: 12px solid transparent;}
|
@ -134,6 +134,9 @@ select#addressbook-index_col_filter\[tid\] {
|
||||
float: right;
|
||||
width: 134px;
|
||||
}
|
||||
#addressbook-index_nm.et2_nextmatch .egwGridView_outer thead tr {
|
||||
border-left: 12px solid transparent;
|
||||
}
|
||||
@media all {
|
||||
/* #############################################################################
|
||||
|
||||
|
@ -65,9 +65,6 @@
|
||||
<column width="100%"/>
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="dialogHeader">
|
||||
<description value="Access control" class=""/>
|
||||
</row>
|
||||
<row>
|
||||
<nextmatch id="nm" template="admin.acl.rows" header_left="admin.acl.add" height="400"/>
|
||||
</row>
|
||||
|
@ -168,3 +168,4 @@ select#admin-mailaccount_ident_id {
|
||||
font-weight: bold;
|
||||
font-size: 110%;
|
||||
}
|
||||
#admin-acl {width:99%;}
|
||||
|
@ -18,7 +18,7 @@
|
||||
* @package etemplate
|
||||
* @link http://www.egroupware.org
|
||||
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
||||
* @version $Id: app.css 55790 2016-04-20 18:52:55Z ralfbecker $
|
||||
* @version $Id: app.css 55801 2016-04-21 16:39:59Z ralfbecker $
|
||||
*/
|
||||
.admin_tree table,
|
||||
.admin_tree tr,
|
||||
@ -174,6 +174,9 @@ select#admin-mailaccount_ident_id {
|
||||
font-weight: bold;
|
||||
font-size: 110%;
|
||||
}
|
||||
#admin-acl {
|
||||
width: 99%;
|
||||
}
|
||||
@media all {
|
||||
div.dhtmlxTree td.standartTreeRow span.selectedTreeRow {
|
||||
background-color: #ffdd73;
|
||||
|
@ -163,6 +163,9 @@ var et2_dataview = (function(){ "use strict"; return Class.extend({
|
||||
{
|
||||
this.width = _w;
|
||||
|
||||
// Take grid header border's width into account. eg. category colors may add extra pixel into width
|
||||
_w = _w - (this.thead.find('tr').outerWidth() - this.thead.find('tr').innerWidth());
|
||||
|
||||
// Rebuild the column stylesheets
|
||||
this.columnMgr.setTotalWidth(_w - this.scrollbarWidth);
|
||||
this._updateColumns();
|
||||
|
@ -95,4 +95,6 @@ div#infolog-edit_infolog-edit-description {
|
||||
#infolog-index select#infolog-index_filter {
|
||||
width: 150px;
|
||||
}
|
||||
#infolog_edit_info_responsible_chzn { width:99% !important;}
|
||||
#infolog_edit_info_responsible_chzn { width:99% !important;}
|
||||
|
||||
#infolog-index_nm.et2_nextmatch .egwGridView_outer thead tr {border-left: 12px solid transparent;}
|
@ -163,6 +163,9 @@ div#infolog-edit_infolog-edit-description {
|
||||
#infolog_edit_info_responsible_chzn {
|
||||
width: 99% !important;
|
||||
}
|
||||
#infolog-index_nm.et2_nextmatch .egwGridView_outer thead tr {
|
||||
border-left: 12px solid transparent;
|
||||
}
|
||||
/*###########################################
|
||||
# #
|
||||
# dialogHeader #
|
||||
|
@ -877,4 +877,6 @@ div.mailComposeHeaderSection>table {
|
||||
font-size: 12pt;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.sieve-title .ruleID::before {content:'#'}
|
||||
.sieve-title .ruleID::before {content:'#'}
|
||||
|
||||
#mail-index_nm.et2_nextmatch .egwGridView_outer thead tr {border-left: 12px solid transparent;}
|
@ -862,6 +862,9 @@ div.mailComposeHeaderSection > table {
|
||||
.sieve-title .ruleID::before {
|
||||
content: '#';
|
||||
}
|
||||
#mail-index_nm.et2_nextmatch .egwGridView_outer thead tr {
|
||||
border-left: 12px solid transparent;
|
||||
}
|
||||
#popupMainDiv {
|
||||
padding: 5px;
|
||||
}
|
||||
|
@ -850,6 +850,9 @@ div.mailComposeHeaderSection > table {
|
||||
.sieve-title .ruleID::before {
|
||||
content: '#';
|
||||
}
|
||||
#mail-index_nm.et2_nextmatch .egwGridView_outer thead tr {
|
||||
border-left: 12px solid transparent;
|
||||
}
|
||||
#popupMainDiv {
|
||||
padding: 5px;
|
||||
}
|
||||
|
@ -24,4 +24,6 @@
|
||||
{
|
||||
display: inline-block;
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
|
||||
#timesheet-index_nm.et2_nextmatch .egwGridView_outer thead tr {border-left: 12px solid transparent;}
|
@ -33,6 +33,9 @@
|
||||
display: inline-block;
|
||||
float: left;
|
||||
}
|
||||
#timesheet-index_nm.et2_nextmatch .egwGridView_outer thead tr {
|
||||
border-left: 12px solid transparent;
|
||||
}
|
||||
/*###########################################
|
||||
# #
|
||||
# dialogHeader #
|
||||
|
Loading…
Reference in New Issue
Block a user