forked from extern/egroupware
Get column padding / spacing with scrollbar sorted out
This commit is contained in:
parent
3c6d4dea15
commit
a11e9ec4ae
@ -3589,7 +3589,6 @@ td.message span.message {
|
|||||||
}
|
}
|
||||||
.egwGridView_scrollarea {
|
.egwGridView_scrollarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-y: scroll;
|
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
@ -5238,7 +5237,7 @@ table.egwGridView_outer thead {
|
|||||||
table.egwGridView_outer thead tr th {
|
table.egwGridView_outer thead tr th {
|
||||||
background-position: -200px;
|
background-position: -200px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
padding: 3px 0 3px 4px;
|
padding: 3px 1px 3px 4px;
|
||||||
border-color: #B4B4B4;
|
border-color: #B4B4B4;
|
||||||
border-left: 0px solid transparent;
|
border-left: 0px solid transparent;
|
||||||
border-top: 0px solid transparent;
|
border-top: 0px solid transparent;
|
||||||
@ -5353,10 +5352,12 @@ table.egwGridView_grid tbody tr.focused {
|
|||||||
background-repeat: repeat;
|
background-repeat: repeat;
|
||||||
}
|
}
|
||||||
table.egwGridView_grid tbody td {
|
table.egwGridView_grid tbody td {
|
||||||
padding: 3px 0 3px 3px;
|
|
||||||
border-bottom: 1px solid #E6E6E6;
|
border-bottom: 1px solid #E6E6E6;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
table.egwGridView_grid tbody td .innerContainer {
|
||||||
|
padding: 3px 0 3px 3px;
|
||||||
|
}
|
||||||
table.egwGridView_grid tbody td table.customfields tbody {
|
table.egwGridView_grid tbody td table.customfields tbody {
|
||||||
border-bottom: 0px;
|
border-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
@ -3578,7 +3578,6 @@ td.message span.message {
|
|||||||
}
|
}
|
||||||
.egwGridView_scrollarea {
|
.egwGridView_scrollarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-y: scroll;
|
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
@ -5227,7 +5226,7 @@ table.egwGridView_outer thead {
|
|||||||
table.egwGridView_outer thead tr th {
|
table.egwGridView_outer thead tr th {
|
||||||
background-position: -200px;
|
background-position: -200px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
padding: 3px 0 3px 4px;
|
padding: 3px 1px 3px 4px;
|
||||||
border-color: #B4B4B4;
|
border-color: #B4B4B4;
|
||||||
border-left: 0px solid transparent;
|
border-left: 0px solid transparent;
|
||||||
border-top: 0px solid transparent;
|
border-top: 0px solid transparent;
|
||||||
@ -5342,10 +5341,12 @@ table.egwGridView_grid tbody tr.focused {
|
|||||||
background-repeat: repeat;
|
background-repeat: repeat;
|
||||||
}
|
}
|
||||||
table.egwGridView_grid tbody td {
|
table.egwGridView_grid tbody td {
|
||||||
padding: 3px 0 3px 3px;
|
|
||||||
border-bottom: 1px solid #E6E6E6;
|
border-bottom: 1px solid #E6E6E6;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
table.egwGridView_grid tbody td .innerContainer {
|
||||||
|
padding: 3px 0 3px 3px;
|
||||||
|
}
|
||||||
table.egwGridView_grid tbody td table.customfields tbody {
|
table.egwGridView_grid tbody td table.customfields tbody {
|
||||||
border-bottom: 0px;
|
border-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,6 @@
|
|||||||
|
|
||||||
.egwGridView_scrollarea {
|
.egwGridView_scrollarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-y: scroll;
|
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@ table.egwGridView_outer{
|
|||||||
background-position: -200px;
|
background-position: -200px;
|
||||||
|
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
padding: 3px 0 3px 4px;
|
padding: 3px 1px 3px 4px;
|
||||||
border-color: @gray_30;
|
border-color: @gray_30;
|
||||||
border-left: 0px solid transparent;
|
border-left: 0px solid transparent;
|
||||||
border-top: 0px solid transparent;
|
border-top: 0px solid transparent;
|
||||||
@ -222,11 +222,12 @@ table.egwGridView_grid{
|
|||||||
|
|
||||||
td {
|
td {
|
||||||
|
|
||||||
// maybe problem width width + height calc
|
|
||||||
padding: 3px 0 3px 3px;
|
|
||||||
border-bottom: 1px solid @gray_10;
|
border-bottom: 1px solid @gray_10;
|
||||||
color: @gray_100;
|
color: @gray_100;
|
||||||
|
.innerContainer {
|
||||||
|
// Needs to be innerContainer to avoid problem width width + height calc
|
||||||
|
padding: 3px 0 3px 3px;
|
||||||
|
}
|
||||||
// Custom fields
|
// Custom fields
|
||||||
table.customfields{
|
table.customfields{
|
||||||
tbody{
|
tbody{
|
||||||
|
@ -3600,7 +3600,6 @@ td.message span.message {
|
|||||||
}
|
}
|
||||||
.egwGridView_scrollarea {
|
.egwGridView_scrollarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-y: scroll;
|
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
@ -5249,7 +5248,7 @@ table.egwGridView_outer thead {
|
|||||||
table.egwGridView_outer thead tr th {
|
table.egwGridView_outer thead tr th {
|
||||||
background-position: -200px;
|
background-position: -200px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
padding: 3px 0 3px 4px;
|
padding: 3px 1px 3px 4px;
|
||||||
border-color: #B4B4B4;
|
border-color: #B4B4B4;
|
||||||
border-left: 0px solid transparent;
|
border-left: 0px solid transparent;
|
||||||
border-top: 0px solid transparent;
|
border-top: 0px solid transparent;
|
||||||
@ -5364,10 +5363,12 @@ table.egwGridView_grid tbody tr.focused {
|
|||||||
background-repeat: repeat;
|
background-repeat: repeat;
|
||||||
}
|
}
|
||||||
table.egwGridView_grid tbody td {
|
table.egwGridView_grid tbody td {
|
||||||
padding: 3px 0 3px 3px;
|
|
||||||
border-bottom: 1px solid #E6E6E6;
|
border-bottom: 1px solid #E6E6E6;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
table.egwGridView_grid tbody td .innerContainer {
|
||||||
|
padding: 3px 0 3px 3px;
|
||||||
|
}
|
||||||
table.egwGridView_grid tbody td table.customfields tbody {
|
table.egwGridView_grid tbody td table.customfields tbody {
|
||||||
border-bottom: 0px;
|
border-bottom: 0px;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user