diff --git a/frontend/src/components/dialog/add-related-file-dialog.js b/frontend/src/components/dialog/add-related-file-dialog.js index 3cdbcbd5af..08f7551831 100644 --- a/frontend/src/components/dialog/add-related-file-dialog.js +++ b/frontend/src/components/dialog/add-related-file-dialog.js @@ -87,7 +87,7 @@ class AddRelatedFileDialog extends React.Component { let subtitle = gettext('Select related file for {placeholder}'); subtitle = subtitle.replace('{placeholder}', '' + Utils.HTMLescape(this.props.dirent.name) + ''); return ( - +
{gettext('Select File')} @@ -111,7 +111,7 @@ class AddRelatedFileDialog extends React.Component { } - +
); } } diff --git a/frontend/src/css/dirent-detail.css b/frontend/src/css/dirent-detail.css index 26805e9d73..4330b2e860 100644 --- a/frontend/src/css/dirent-detail.css +++ b/frontend/src/css/dirent-detail.css @@ -167,7 +167,8 @@ } .sf-add-related-file .related-file-subtitle { - margin-bottom: 4px; + display: inline-block; + margin-bottom: 0.5rem; } .detail-container .tab-content { diff --git a/frontend/src/css/file-chooser.css b/frontend/src/css/file-chooser.css index e67d828fa1..e21ab1d2f5 100644 --- a/frontend/src/css/file-chooser.css +++ b/frontend/src/css/file-chooser.css @@ -1,7 +1,9 @@ .file-chooser-container { padding: 0.5rem; height: 20rem; - border: 1px solid #eee; + border: 1px solid rgba(0, 40, 100, 0.12); + border-radius: 3px; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; overflow: auto; font-size: 1rem; }