File tree 2 files changed +15
-1
lines changed
src/dashboard/Data/Browser
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -251,3 +251,17 @@ body:global(.expanded) {
251
251
width : calc (100% - 280px );
252
252
float : left ;
253
253
}
254
+
255
+ .editRowDialogFileCell {
256
+ max-width : 100% ;
257
+ padding : 25px ;
258
+ span {
259
+ display : flex ;
260
+ span {
261
+ width : 90% ;
262
+ }
263
+ & a {
264
+ position : relative ;
265
+ }
266
+ }
267
+ }
Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ export default class EditRowDialog extends React.Component {
354
354
let file = selectedObject [ name ] ;
355
355
let fileName = file && file . url ( ) ? getFileName ( file ) : '' ;
356
356
inputComponent = (
357
- < div style = { { padding : '25px' } } >
357
+ < div className = { [ styles . editRowDialogFileCell ] } >
358
358
{ file && < Pill value = { fileName } fileDownloadLink = { file . url ( ) } /> }
359
359
< div style = { { cursor : 'pointer' } } >
360
360
< Pill
You can’t perform that action at this time.
0 commit comments