Skip to content

Commit

Permalink
Improve styling for new Calendar release and bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
mwalbeck committed Mar 5, 2022
1 parent f1a8c2a commit d7040dd
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## 23.2.1 - 2022-03-05

### Fixed

- Improved styling for new Calendar release.

## 23.2.0 - 2022-01-30

### Added
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Please note that you need the Accessibility app enabled in Nextcloud to access t
Under the Theming section in the admin settings you can add your own custom styling to the theme. Only standard CSS can be used. This custom styling will be applied whenever the theme is enabled and only affects the Breeze Dark theme.
]]></description>
<version>23.2.0</version>
<version>23.2.1</version>
<licence>agpl</licence>
<author mail="[email protected]" homepage="https://github.com/mwalbeck/nextcloud-breeze-dark">Magnus Walbeck</author>
<namespace>BreezeDark</namespace>
Expand Down
32 changes: 28 additions & 4 deletions css/apps/official/_calendar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,45 @@
/* Calendar ----------------------------------------------------------------- */

.app-calendar .app-content {
.fc td.fc-day.nc-calendar-fc-day-of-weekend {
background-color: var(--color-background-darker);
}

.fc-highlight {
background: var(--color-background-hover);
opacity: unset;
}

.fc .fc-cell-shaded {
background-color: var(--color-border);
}

.fc-daygrid-week-number {
background-color: var(--color-background-darker);
border-bottom: 1px solid var(--color-border);
border-right: 1px solid var(--color-border);
color: var(--color-text-maxcontrast);
}

.fc .fc-daygrid-day.fc-day-today,
.fc .fc-timegrid-col.fc-day-today,
.fc-day-today.fc-col-header-cell {
background-color: var(--color-background-hover) !important;
}

.fc-day-today.fc-col-header-cell a,
.fc-day-today.fc-col-header-cell span {
background-color: unset !important;
}

.fc-daygrid-day.fc-day.fc-day-other,
.fc .fc-daygrid-day.fc-day-today.fc-day-other {
background-color: var(--color-background-darker) !important;
border-color: var(--color-border);
opacity: 0.5;
}

.fc .fc-timeGridDay-view .fc-daygrid-day.fc-day-today,
.fc .fc-timeGridDay-view .fc-timegrid-col.fc-day-today,
.fc .fc-timeGridDay-view .fc-day-today.fc-col-header-cell {
background-color: inherit !important;
}
}

.app-calendar .app-sidebar {
Expand Down

0 comments on commit d7040dd

Please sign in to comment.