Fix unwanted scrollbars

This commit is contained in:
Nathan Gray 2014-01-16 17:04:26 +00:00
parent 812c2e1ecc
commit 195ac0ceb3
3 changed files with 27 additions and 23 deletions

View File

@ -3711,7 +3711,7 @@ table.egwGridView_outer tbody {
/*Elements inside td*/
}
table.egwGridView_outer tbody td.frame {
border: 1px solid #e6e6e6;
/*border: 1px solid #e6e6e6; can't have - breaks grid scrol calcs*/
/*padding: 0px 5px; no need*/
}
table.egwGridView_outer tbody td .et2_link {
@ -4140,7 +4140,8 @@ table.nextmatch_header img {
}
.egwGridView_scrollarea {
width: 100%;
overflow: auto;
overflow-y: auto;
overflow-x: hidden;
}
#egw_fw_header {
width: 100%;
@ -5242,7 +5243,8 @@ div#calendar-container div.calendar table tbody tr.rowhilite td {
width: 100%;
padding: 0px;
margin: 0;
overflow: auto;
overflow-x: hidden;
overflow-y: auto;
}
#egw_fw_main .egw_fw_ui_tab_content > div {
width: 100%;

View File

@ -35,7 +35,8 @@
.egwGridView_scrollarea {
width: 100%;
overflow: auto;
overflow-y: auto;
overflow-x: hidden;
}
#egw_fw_header{
@ -1267,7 +1268,8 @@ div#calendar-container {
width: 100%;
padding: 0px;
margin: 0;
overflow: auto;
overflow-x: hidden;
overflow-y: hidden;
> div {

View File

@ -151,7 +151,7 @@ table.egwGridView_outer{
td.frame {
border: 1px solid @gray_10;
/*border: 1px solid @gray_10; can't have - breaks grid scroll calculations'
/*padding: 0px 5px; no need*/
}