1
0
Fork 0
mirror of https://github.com/mwalbeck/nextcloud-breeze-dark.git synced 2025-05-14 13:32:21 +00:00

Calendar: Highlight selected items in repeat section

This commit is contained in:
Magnus Walbeck 2020-04-22 22:11:07 +02:00
parent f91cfb4f00
commit a2045ade60
Signed by: mwalbeck
GPG key ID: CCB78CFF3F950769
2 changed files with 24 additions and 0 deletions

View file

@ -3,6 +3,7 @@
## [Unreleased]
### Fixed
- Make text colour in Users section white again after adding variable --color-text-dark
- [#117](https://github.com/mwalbeck/nextcloud-breeze-dark/issues/117) Calendar: Highlight selected items in repeat section
## 18.0.12 - 2020-04-18
### Fixed

View file

@ -68,6 +68,29 @@
box-shadow: inset 0 -1px 0 var(--color-background-dark);
border-bottom-color: var(--color-background-dark);
}
#tab-app-sidebar-tab-repeat .repeat-option-set-section__grid .repeat-option-set-section-grid-item {
&:active,
&:focus {
background-color: var(--color-main-background);
border-color: var(--color-border);
}
&:hover {
background-color: var(--color-background-hover);
border-color: var(--color-border-active);
}
&.primary {
background-color: var(--color-primary-element) !important;
border-color: var(--color-border-active) !important;
&:hover {
background-color: var(--color-background-hover) !important;
}
}
}
}
.color-picker .vc-chrome {