mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Table: Fixes row border style not showing and colored rows blending together (#59660)
* Table: Fixex row border style not showing and colored rows blending together * Updated
This commit is contained in:
parent
ec1d93c8ab
commit
37c118b7dd
@ -37,7 +37,8 @@ export const getTableStyles = (theme: GrafanaTheme2) => {
|
||||
label: ${overflowOnHover ? 'cellContainerOverflow' : 'cellContainerNoOverflow'};
|
||||
padding: ${cellPadding}px;
|
||||
width: 100%;
|
||||
height: ${rowHeight}px;
|
||||
// Cell height need to account for row border
|
||||
height: ${rowHeight - 1}px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border-right: 1px solid ${borderColor};
|
||||
|
Loading…
Reference in New Issue
Block a user