Skip to content

Commit 99b3387

Browse files
committed
Improvements on dark theme. Small fixes on reportbytag
1 parent e240bb4 commit 99b3387

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

source/src/main/java/org/cerberus/core/util/StringUtil.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ public static String cleanHostURL(String host) {
369369
public static String cleanFromSpecialCharacters(String in) {
370370
return in.replace(" ", SPECIAL_CHAR_REPLACEMENT)
371371
.replace("<", SPECIAL_CHAR_REPLACEMENT)
372+
.replace(":", SPECIAL_CHAR_REPLACEMENT)
372373
.replace(">", SPECIAL_CHAR_REPLACEMENT)
373374
.replace("|", SPECIAL_CHAR_REPLACEMENT)
374375
.replace("/", SPECIAL_CHAR_REPLACEMENT)

source/src/main/webapp/css/global/crb_style2.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1838,7 +1838,7 @@ table.dataTable thead th input {
18381838
}
18391839

18401840
.muted {
1841-
background-color: #f8f8f8;
1841+
background-color: var(--crb-grey-lighter-color);
18421842
}
18431843

18441844
.popover{

source/src/main/webapp/js/global/global.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3154,7 +3154,7 @@ function comboConfigTag_format(tag) {
31543154
}
31553155
if (tag.nbExeUsefull > 0) {
31563156
markup += "<div class='select2-result-tag__detail'> " + tag.nbExeUsefull + " Exe(s)</div>";
3157-
markup += "<div class='select2-result-tag__detail " + tag.ciResult + "'> " + tag.ciResult + "</div>";
3157+
markup += "<div class='select2-result-tag__detail status" + tag.ciResult + "'> " + tag.ciResult + "</div>";
31583158
}
31593159
if (tag.campaign) {
31603160
markup += "<div class='select2-result-tag__detail'><i class='fa fa-list'></i> " + tag.campaign + "</div>";

source/src/main/webapp/js/pages/ReportingMonitor.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,8 +529,8 @@ function refreshMonitorTable(dataFromWs) {
529529
indexPreviousValues[id] = exeId + fn;
530530

531531
});
532-
// console.info("INDEX of previous executions");
533-
// console.info(indexPreviousValues);
532+
console.info("INDEX of previous executions");
533+
console.info(indexPreviousValues);
534534
monTable.empty();
535535

536536
// console.info(dataFromWs);
@@ -946,7 +946,7 @@ function refreshBoxTimings() {
946946
let sinceLast = new Date().getTime() - (lastPush);
947947
// Stop Blinking after 30 sec
948948
if ((sinceLast > 30000) && (item.classList.contains("new"))) {
949-
console.info("remove blinking " + sinceLast + " " + item.classList);
949+
console.info("remove blinking " + item.id + " sinceLast: "+sinceLast + " classList: " + item.classList);
950950
// console.info($("#" + item.id));
951951
$("#" + item.id).removeClass("blinking new");
952952
}

0 commit comments

Comments
 (0)