Skip to content

Commit e6147f7

Browse files
authored
Merge pull request #1318 from dbtechisrael/master
Improve status bar alert color for better visibility (fixes #853)
2 parents ff5d73c + 077c77f commit e6147f7

4 files changed

Lines changed: 12 additions & 10 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@
277277
</div>
278278
<div id=lb_tip hidden><div id=lb_tip_desc></div><hr><div id=lb_tip_body><pre id=lb_tip_text></pre></div></div>
279279
<div id=sb hidden>
280-
<div id=sb_left>
280+
<div id=sb_left >
281281
<div id=sb_busy title="Busy" hidden><span class="fas fa-clock"></span></div>
282282
</div>
283-
<div id=sb_right>
283+
<div id=sb_right >
284284
<div id=sb_gc title="Garbage collections" hidden>GC: </div>
285285
<div id=sb_cc title="Compaction Count" hidden>CC: </div>
286286
<div id=sb_threads title="Thread Count" hidden>&: </div>

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style/less/colour/status_bar.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@
1313
#sb_right>div {
1414
border-left: 1px solid @STATUSBAR_SEP_COL;
1515
}
16+

style/less/themes/base.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@APL_FONT: apl,monospace;
22
@SANS_SERIF_FONT: Roboto,sans-serif;
33
@THEME_PRIMARY:#8986ca;
4+
@THEME_PRIMARY_ALERT: red;
45
@THEME_SECONDARY:#f2f1f0;
56
@THEME_DIMMED: darken(@THEME_PRIMARY, 10);
67
@THEME_DARK: darken(@THEME_PRIMARY, 25);
@@ -128,7 +129,7 @@
128129
@TOOLBAR_FG_HOVER_COL:@THEME_PRIMARY;
129130
@STATUSBAR_BG_COL:@GL_ACT_TAB_BG;
130131
@STATUSBAR_SEP_COL:@GL_BG;
131-
@STATUSBAR_ACTIVE_COL:@THEME_PRIMARY;
132+
@STATUSBAR_ACTIVE_COL:@THEME_PRIMARY_ALERT;
132133
@SW_BG:@THEME_SECONDARY;
133134
@VALUE_TIP_BG:black;
134135
@VALUE_TIP_COL:white;

0 commit comments

Comments
 (0)