Skip to content
This repository was archived by the owner on Jun 5, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@

## Changelog:

0.1.7
- changed default arrows in default template to use html entities

0.1.6
- corrected broadcast event handling to reload calendar

0.1.5
- added broadcast event handling to reload calendar

0.1.4
- fix problem with selecting 1 day in range picker

Expand Down
6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "angular-mighty-datepicker",
"version": "0.1.4",
"name": "angular-mighty2-datepicker",
"authors": [
"Krzysztof Jung <krzysztof.jung@monterail.com>",
"Patryk Peas <patryk.peas@monterail.com>",
"Kamil Nicieja <kamil.nicieja@monterail.com>",
"Bartosz Erbert <bartosz.erbert@monterail.com>"
"Bartosz Erbert <bartosz.erbert@monterail.com>",
"Marco Solari <marcosolari@gmail.com>"
],
"repository": "git://github.com/monterail/angular-mighty-datepicker.git",
"description": "Angular based datepicker with mighty options",
Expand Down
6 changes: 4 additions & 2 deletions build/angular-mighty-datepicker.css
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
.mighty-picker-calendar__day {
cursor: pointer;
position: relative;
color: #333;
color: #050505; /* almost black */
}
.mighty-picker-calendar__day--disabled {
color: #aaa;
color: #ffc3bb;
/* very light red */
font-style: italic;
cursor: auto;
}
.mighty-picker-calendar__day--in-range {
Expand Down
Loading