Skip to content

Commit

Permalink
#124 jsxc: fix load more messages button in chat window
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalbeck committed May 2, 2020
1 parent 822f3ef commit 54941e8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### Fixed
- [#113](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/113) jsxc: Fix colour of icons in hamburger menu
- [#113](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/113) jsxc: Fix background colour for readonly input in settings
- [#124](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/124) jsxc: Fix load more messages button in chat window

## 18.0.13 - 2020-04-26
### Fixed
Expand Down
22 changes: 22 additions & 0 deletions css/apps/thirdparty/_ojsxc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,28 @@
}
}
}

.jsxc-mam-load-more span {
background-color: var(--color-main-background);
border: 1px solid var(--color-border);
border-radius: 16px;
opacity: 0.7;

&:hover {
background-color: var(--color-background-hover);
border-color: var(--color-border-active);
color: var(--color-text-active);
opacity: 1;
}

&:focus,
&:active {
background-color: var(--color-primary-element);
border-color: var(--color-border-active);
color: var(--color-text-active);
opacity: 1;
}
}
}

.app-settings #ojsxc-admin.ojsxc {
Expand Down

0 comments on commit 54941e8

Please sign in to comment.