Skip to content

Commit 106ebea

Browse files
committed
CSS Tweak: Remove cyan color from inherited limits / actions
1 parent 4022a71 commit 106ebea

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

htdocs/css/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1466,12 +1466,12 @@ body.dark div.box_unit {
14661466
background-color: var(--box-background-color);
14671467
}
14681468

1469-
.box_grid .data_table_compact .data_grid .grid_row.src_cat, .box_grid .data_table_compact .data_grid .grid_row.src_cat .td_big {
1469+
/* .box_grid .data_table_compact .data_grid .grid_row.src_cat, .box_grid .data_table_compact .data_grid .grid_row.src_cat .td_big {
14701470
color: var(--cyan) !important;
14711471
}
14721472
.box_grid .data_table_compact .data_grid .grid_row.src_uni, .box_grid .data_table_compact .data_grid .grid_row.src_uni .td_big {
14731473
color: var(--cyan) !important;
1474-
}
1474+
} */
14751475

14761476
/* Job Day Graph */
14771477

htdocs/js/pages/PageUtils.class.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3888,7 +3888,7 @@ Page.PageUtils = class PageUtils extends Page.Base {
38883888
else if (item.source == 'universal') disp_icon = 'lock';
38893889

38903890
var tooltip = item.source ? `title="(Inherited from ${item.source})"` : 'title="(Inherited from event)"';
3891-
if ((item.source == 'category') || (item.source == 'universal')) tooltip += ` style="color:var(--cyan)"`;
3891+
// if ((item.source == 'category') || (item.source == 'universal')) tooltip += ` style="color:var(--cyan)"`;
38923892

38933893
html += '<div>'; // grid unit
38943894
html += `<div class="info_label">${disp.condition.title}</div>`;
@@ -3932,7 +3932,7 @@ Page.PageUtils = class PageUtils extends Page.Base {
39323932
else if (item.source == 'universal') icon = 'lock';
39333933

39343934
var tooltip = item.source ? `title="(Inherited from ${item.source})"` : 'title="(Inherited from event)"';
3935-
if ((item.source == 'category') || (item.source == 'universal')) tooltip += ` style="color:var(--cyan)"`;
3935+
// if ((item.source == 'category') || (item.source == 'universal')) tooltip += ` style="color:var(--cyan)"`;
39363936

39373937
html += '<div>'; // grid unit
39383938
html += `<div class="info_label">${nice_title}</div>`;

0 commit comments

Comments
 (0)