File tree 4 files changed +3
-7
lines changed 4 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ const CopyFileButton = styled(
63
63
< Popover content = { popoverContent } trigger = "hover" >
64
64
< Button
65
65
{ ...props }
66
- ghost
67
66
icon = { < CopyOutlined /> }
68
67
onBlur = { ( ) => {
69
68
setPopoverContent ( popoverContentOpts . default )
Original file line number Diff line number Diff line change @@ -133,9 +133,9 @@ interface CompleteDiffButtonProps extends ButtonProps {
133
133
const CompleteDiffButton = styled (
134
134
( { open, onClick, ...props } : CompleteDiffButtonProps ) =>
135
135
open ? (
136
- < Button { ...props } ghost icon = { < RollbackOutlined /> } onClick = { onClick } />
136
+ < Button { ...props } icon = { < RollbackOutlined /> } onClick = { onClick } />
137
137
) : (
138
- < Button { ...props } ghost icon = { < CheckOutlined /> } onClick = { onClick } />
138
+ < Button { ...props } icon = { < CheckOutlined /> } onClick = { onClick } />
139
139
)
140
140
) `
141
141
${ defaultIconButtonStyle }
@@ -177,7 +177,6 @@ const CopyPathToClipboardButton = styled(
177
177
>
178
178
< Button
179
179
{ ...props }
180
- ghost
181
180
icon = { < CopyOutlined /> }
182
181
onMouseOver = { resetCopyPathPopoverContent }
183
182
/>
@@ -233,7 +232,6 @@ const CopyAnchorLinksToClipboardButton = styled(
233
232
>
234
233
< Button
235
234
{ ...props }
236
- ghost
237
235
icon = { < LinkOutlined /> }
238
236
onMouseOver = { resetContent }
239
237
/>
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ const DownloadFileButton = ({
19
19
return open ? (
20
20
< Button
21
21
{ ...props }
22
- ghost
23
22
shape = "circle"
24
23
icon = { < DownloadOutlined /> }
25
24
target = "_blank"
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const ViewFileButton = styled(
27
27
)
28
28
}
29
29
) `
30
- font-size: 12px ;
30
+ font-size: 13px ;
31
31
`
32
32
33
33
export default ViewFileButton
You can’t perform that action at this time.
0 commit comments