diff --git a/CHANGELOG.md b/CHANGELOG.md index 29fecac7..ec504c09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 See [Release](https://github.com/itsallcode/white-rabbit/releases/tag/v1.6.0) / [Milestone](https://github.com/itsallcode/white-rabbit/milestone/8?closed=1) +* [#111](https://github.com/itsallcode/white-rabbit/pull/111): Display week ends in other color. + ### Added * [#110](https://github.com/itsallcode/white-rabbit/issues/110) / [PR #145](https://github.com/itsallcode/white-rabbit/pull/145): Display current date incl. day of week and number of calendar week (ISO). diff --git a/jfxui/src/main/resources/org/itsallcode/whiterabbit/jfxui/table/days/style.css b/jfxui/src/main/resources/org/itsallcode/whiterabbit/jfxui/table/days/style.css index 63f12900..ef2ff99f 100644 --- a/jfxui/src/main/resources/org/itsallcode/whiterabbit/jfxui/table/days/style.css +++ b/jfxui/src/main/resources/org/itsallcode/whiterabbit/jfxui/table/days/style.css @@ -30,10 +30,11 @@ TableView#day-table { } .table-row-cell:not-working { - -fx-background-color: lightyellow; + -fx-background-color: -fx-table-cell-border-color, lightyellow; } + .table-row-cell:weekend { - -fx-background-color: gainsboro; + -fx-background-color: -fx-table-cell-border-color, #f8eeee; } .table-row-cell:not-working:selected {