Skip to content

Commit

Permalink
Expanded row changes (#120)
Browse files Browse the repository at this point in the history
* updated favicon to monochrome color

* simple CSS changes to expanded row
  • Loading branch information
ajayalfred authored and k8s-ci-robot committed Nov 7, 2018
1 parent fb9b48a commit d1c38e5
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions frontend/src/components/CustomTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,14 @@ export const css = stylesheet({
transform: 'rotate(90deg)',
},
expandedContainer: {
border: '1px solid ' + color.divider,
borderRadius: 7,
boxShadow: '0px 2px 7px #aaa',
margin: '4px 2px',
borderRadius: 10,
boxShadow: '0 1px 2px 0 rgba(60,64,67,0.30), 0 1px 3px 1px rgba(60,64,67,0.15)',
margin: '16px 2px',
},
expandedRow: {
borderBottom: '1px solid transparent !important',
boxSizing: 'border-box',
height: '34px !important',
height: '40px !important',
},
footer: {
borderBottom: '1px solid ' + color.divider,
Expand Down Expand Up @@ -332,7 +331,7 @@ export default class CustomTable extends React.Component<CustomTableProps, Custo
))}
</div>
{row.expandState === ExpandState.EXPANDED && this.props.getExpandComponent && (
<div className={padding(20, 'lr')}>
<div className={padding(20, 'lrb')}>
{this.props.getExpandComponent(i)}
</div>
)}
Expand Down

0 comments on commit d1c38e5

Please sign in to comment.