Skip to content

Commit

Permalink
misc: fix dark theme style in adapter header
Browse files Browse the repository at this point in the history
  • Loading branch information
embbnux committed Dec 2, 2024
1 parent b9c30b7 commit df5ab32
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/lib/Adapter/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
}

.dark.root {
background-color: #1e2027;
background-color: #282A32;
}

.root.dock {
Expand Down Expand Up @@ -239,3 +239,13 @@
right: auto;
margin-top: 0;
}

.dark .line {
background-color: #282A32;
border-color: #30323A;
color: #ffffff;
}

.dark .presenceItem:hover {
background-color: #30323A;
}
1 change: 1 addition & 0 deletions src/modules/Adapter/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,7 @@ export default class Adapter extends AdapterModuleCore {
telephonyStatus: (this._auth.loggedIn && this._presence.telephonyStatus) || null,
userStatus: (this._auth.loggedIn && this._presence.userStatus) || null,
dndStatus: (this._auth.loggedIn && this._presence.dndStatus) || null,
presenceOption:(this._auth.loggedIn && this._presence.presenceOption) || null,
});
}
}
Expand Down

0 comments on commit df5ab32

Please sign in to comment.