Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WebUI] Restore contrasting foreground color #4569

Merged
merged 1 commit into from Aug 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion interface/index.html
Expand Up @@ -622,7 +622,7 @@ <h6 class="card-title fw-bolder">HTTP requests timeout, ms</h6>
<span class="h6 fw-bolder my-2 ms-0">History</span>
<a href="https://rspamd.com/doc/modules/history_redis.html" target="_blank" rel="noopener noreferrer"
title="If you'd like to use the modern version of History, please enable History redis module."
id="legacy-history-badge" class="my-2 ms-2 badge bg-info" style="display: none;">Legacy version</a>
id="legacy-history-badge" class="my-2 ms-2 badge text-bg-info" style="display: none;">Legacy version</a>
<div class="d-flex input-group-sm align-items-center text-nowrap ms-auto me-1">
<label for="selSymOrder_history">Symbols order:</label>
<select id="selSymOrder_history" class="form-select ms-1">
Expand Down
4 changes: 2 additions & 2 deletions interface/js/app/config.js
Expand Up @@ -124,9 +124,9 @@ define(["jquery", "codejar", "linenumbers", "prism"],
var $tbody = $("<tbody>");

$.each(data, function (i, item) {
var $td = '<td><span class="badge bg-secondary">Read</span></td>';
var $td = '<td><span class="badge text-bg-secondary">Read</span></td>';
if (!(item.editable === false || rspamd.read_only)) {
$td = $($td).append('&nbsp;<span class="badge bg-success">Write</span>');
$td = $($td).append('&nbsp;<span class="badge text-bg-success">Write</span>');
}
var $tr = $("<tr>").append($td);

Expand Down
8 changes: 4 additions & 4 deletions interface/js/app/rspamd.js
Expand Up @@ -927,13 +927,13 @@ function ($, visibility, NProgress, stickyTabs, tab_stat, tab_graph, tab_config,
}

if (item.action === "clean" || item.action === "no action") {
item.action = "<div style='font-size:11px' class='badge bg-success'>" + item.action + "</div>";
item.action = "<div style='font-size:11px' class='badge text-bg-success'>" + item.action + "</div>";
} else if (item.action === "rewrite subject" || item.action === "add header" || item.action === "probable spam") {
item.action = "<div style='font-size:11px' class='badge bg-warning'>" + item.action + "</div>";
item.action = "<div style='font-size:11px' class='badge text-bg-warning'>" + item.action + "</div>";
} else if (item.action === "spam" || item.action === "reject") {
item.action = "<div style='font-size:11px' class='badge bg-danger'>" + item.action + "</div>";
item.action = "<div style='font-size:11px' class='badge text-bg-danger'>" + item.action + "</div>";
} else {
item.action = "<div style='font-size:11px' class='badge bg-info'>" + item.action + "</div>";
item.action = "<div style='font-size:11px' class='badge text-bg-info'>" + item.action + "</div>";
}

var score_content = (item.score < item.required_score)
Expand Down