diff --git a/Bootstrap.Admin/Content/admin.css b/Bootstrap.Admin/Content/admin.css index 9342c8b1..1c985959 100644 --- a/Bootstrap.Admin/Content/admin.css +++ b/Bootstrap.Admin/Content/admin.css @@ -2,19 +2,6 @@ display: inline-block; } -.logfile { - color: #d41404; - white-space: nowrap; -} - - .logfile:focus, .logfile:active, .logfile:hover { - color: red; - } - - .logfile span { - margin-left: 4px; - } - .logTs, .logSql, .logDbExcep { color: red; font-weight: 600; diff --git a/Bootstrap.Admin/Content/fa.css b/Bootstrap.Admin/Content/fa.css index 4e7b8871..756d903b 100644 --- a/Bootstrap.Admin/Content/fa.css +++ b/Bootstrap.Admin/Content/fa.css @@ -218,6 +218,24 @@ margin-right: 10px; } +.logitem { + overflow: hidden; + text-overflow: ellipsis; +} + +.logfile { + color: #d41404; + white-space: nowrap; +} + + .logfile:focus, .logfile:active, .logfile:hover { + color: red; + } + + .logfile span { + margin-left: 4px; + } + @media (min-width: 375px) { .icon-content .modal-footer span { display: inline-block; diff --git a/Bootstrap.Admin/Scripts/Exceptions.js b/Bootstrap.Admin/Scripts/Exceptions.js index b1bc6549..4e4c6813 100644 --- a/Bootstrap.Admin/Scripts/Exceptions.js +++ b/Bootstrap.Admin/Scripts/Exceptions.js @@ -42,7 +42,7 @@ Id: "", url: Exceptions.url, swal: false, callback: function (result) { var html = result.map(function (ele) { - return $.format('
', ele); + return $.format('', ele); }).join(''); $dataForm.children('div').html(html); }