Skip to content

Commit

Permalink
fix css
Browse files Browse the repository at this point in the history
  • Loading branch information
BtcContributor committed Mar 11, 2021
1 parent 9460318 commit 144b3e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions desktop/src/main/java/bisq/desktop/main/shared/ChatView.java
Original file line number Diff line number Diff line change
Expand Up @@ -488,10 +488,12 @@ private void updateMsgState(ChatMessage message) {
visible = true;
icon = AwesomeIcon.OK;
text = Res.get("support.arrived");
statusHBox.setOpacity(0.5);
} else if (message.storedInMailboxProperty().get()) {
visible = true;
icon = AwesomeIcon.ENVELOPE;
text = Res.get("support.savedInMailbox");
statusHBox.setOpacity(0.5);
} else {
visible = false;
log.debug("updateMsgState called but no msg state available. message={}", message);
Expand Down
2 changes: 1 addition & 1 deletion desktop/src/main/java/bisq/desktop/theme-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
-fx-accent: #25b135;
-fx-box-border: transparent;
-fx-focus-color: #2ea33c;
-fx-faint-focus-color: #006000;
-fx-faint-focus-color: #2ea33c;
-fx-selection-bar: #1a6e1e;
-fx-selection-bar-non-focused: #2a7e2e;
-fx-default-button: derive(-fx-accent, 95%);
Expand Down

0 comments on commit 144b3e4

Please sign in to comment.