Skip to content

Commit

Permalink
feat(datepicker): add background color when hovering day
Browse files Browse the repository at this point in the history
part of #706

Closes #713
  • Loading branch information
jnizet authored and pkozlowski-opensource committed Sep 10, 2016
1 parent 08e6934 commit bc89510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datepicker/datepicker-day-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {Component, Input} from '@angular/core';
border-radius: 0.25rem;
}
`],
host: {'[class.bg-primary]': 'selected', '[class.text-muted]': 'isMuted()'},
host: {'[class.bg-primary]': 'selected', '[class.text-muted]': 'isMuted()', '[class.btn-secondary]': '!disabled'},
template: `{{ date.day }}`
})
export class NgbDatepickerDayView {
Expand Down

0 comments on commit bc89510

Please sign in to comment.