Open sunnysideup opened 6 years ago
here is what can be achieved in a few minutes with CSS (and my limited abilities):
This is the CSS I added:
table.grid-field__table .sortablerowsheading {
padding-top: 0!important; padding-bottom: 0!important; background-color: #ddd;
border-bottom: 1px solid #aaa;
}
table.grid-field__table th.main {
border-bottom: 1px solid #aaa;
background-color: #ccc;
}
OR
table.grid-field__table .sortablerowsheading {
padding-top: 0!important; padding-bottom: 0!important;
background-color: #dbe0e9;
border-bottom: 1px solid #aaa;
}
table.grid-field__table th.main {
border-bottom: 1px solid #bbb;
background-color: #ced5e1;
}
Affected Version
SS4
Description
There seems to be too much spacing here in places where things should be tight (e.g. too much spacing between headers and rows) and perhaps also vice versa.
This is of course part of the core GridField, but it may be an idea to at least let the sortable gridfield do it a little better?