diff --git a/client/src/views/fields/attachment-multiple.js b/client/src/views/fields/attachment-multiple.js index 9bec5ec65f..b89fc1a655 100644 --- a/client/src/views/fields/attachment-multiple.js +++ b/client/src/views/fields/attachment-multiple.js @@ -529,7 +529,7 @@ Espo.define('views/fields/attachment-multiple', 'views/fields/base', function (D previews.push('
' + this.getDetailPreview(name, type, id) + '
'); continue; } - var line = '
' + Handlebars.Utils.escapeExpression(name) + '
'; + var line = '
' + Handlebars.Utils.escapeExpression(name) + '
'; names.push(line); } var string = previews.join('') + names.join(''); diff --git a/client/src/views/fields/file.js b/client/src/views/fields/file.js index a1c6931479..1e0085aeb4 100644 --- a/client/src/views/fields/file.js +++ b/client/src/views/fields/file.js @@ -285,7 +285,7 @@ Espo.define('views/fields/file', 'views/fields/link', function (Dep) { if (this.showPreview && ~this.previewTypeList.indexOf(type)) { string = '
' + this.getDetailPreview(name, type, id) + '
'; } else { - string = ' ' + Handlebars.Utils.escapeExpression(name) + ''; + string = ' ' + Handlebars.Utils.escapeExpression(name) + ''; } return string; } diff --git a/frontend/less/espo/custom.less b/frontend/less/espo/custom.less index 57fb568f4a..aa68ecc46e 100644 --- a/frontend/less/espo/custom.less +++ b/frontend/less/espo/custom.less @@ -60,6 +60,10 @@ } } +.text-soft { + color: @gray-soft; +} + .btn { border-radius: @button-radius; }