Skip to content

Commit

Permalink
reiterate source file deletion after import
Browse files Browse the repository at this point in the history
  • Loading branch information
car031 committed Nov 21, 2024
1 parent 46438d0 commit a4d5ec1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ private void refresh() {
return "<span class='event-ok'>" + I18N.message("iimport").toLowerCase() + CLOSE_SPAN;
else if (value.toString().contains("importfolder.updated"))
return "<span class='event-med'>" + I18N.message("update").toLowerCase() + CLOSE_SPAN;
else if (value.toString().contains("importfolder.warn"))
return "<span class='event-warning'>" + I18N.message("warning").toLowerCase() + CLOSE_SPAN;
else if (value.toString().contains("importfolder.error"))
return "<span class='event-error'>" + I18N.message("error").toLowerCase() + CLOSE_SPAN;
else
Expand Down
4 changes: 4 additions & 0 deletions logicaldoc-gui/war/skin/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,10 @@
color: DarkRed;
}

.event-warning {
color: Orange;
}

.calendar-without-label table[role="presentation"] td.normal b {
display: none;
}
Expand Down

0 comments on commit a4d5ec1

Please sign in to comment.