Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
feat(calendar): starting work for date-picker.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelbourn committed Aug 13, 2015
1 parent 3e8c994 commit 9b0b861
Show file tree
Hide file tree
Showing 11 changed files with 1,327 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/button/button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ $icon-button-margin: rem(0.600) !default;
}
}
}

.md-toast-open-bottom {
.md-button.md-fab-bottom-left,
.md-button.md-fab-bottom-right {
Expand All @@ -199,6 +200,7 @@ $icon-button-margin: rem(0.600) !default;
flex: 1;
width: 100%;
}

.md-button-group > .md-button {
flex: 1;

Expand Down
28 changes: 28 additions & 0 deletions src/components/calendar/calendar-theme.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Theme styles for mdCalendar.

.md-calendar-day-header {
background-color: #eeeeee; // grey-200
color: #616161; // need spec; currently grey-700
}

.md-calendar-date.md-calendar-date-today {
color: #2196f3; // blue-500
}

.md-calendar-date:focus {
.md-calendar-date-selection-indicator {
background-color: #e0e0e0; // grey-300
}
}

.md-calendar-date-selection-indicator:hover {
background-color: #e0e0e0; // grey-300
}

// Selected style goes after hover and focus so that it takes priority.
.md-calendar-date.md-calendar-selected-date {
.md-calendar-date-selection-indicator {
background-color: #2196f3; // blue-500
color: white; // ?
}
}
Loading

0 comments on commit 9b0b861

Please sign in to comment.