File tree Expand file tree Collapse file tree 2 files changed +9
-12
lines changed
src/components/mdDatePicker Expand file tree Collapse file tree 2 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ $month-small-width: 280px;
84
84
}
85
85
86
86
.md-datepicker-header {
87
- width : 172 px ;
87
+ width : 160 px ;
88
88
padding : 16px ;
89
89
90
90
@include layout-xsmall {
Original file line number Diff line number Diff line change 47
47
<div class =" md-datepicker-days" >
48
48
<span class =" md-empty" v-for =" day in startOfMonth(month).getDay()" v-once ></span >
49
49
50
- <button
51
- class =" md-button md- icon-button"
50
+ <md- button
51
+ class =" md-icon-button"
52
52
v-for =" day in getDaysInMonth(month)"
53
53
:key =" day"
54
54
:class =" {
57
57
}"
58
58
@click.native =" setDate(day)"
59
59
v-once >
60
- <md-ink-ripple />
61
60
{{ day }}
62
- </button >
61
+ </md- button >
63
62
</div >
64
63
</div >
65
64
</transition-group >
66
65
</div >
67
66
68
67
<div class =" md-datepicker-years" v-show =" currentView === 'year'" >
69
- <button
68
+ <md- button
70
69
class =" md-dense md-datepicker-year"
71
70
v-for =" year in visibleYears()"
72
71
:key =" year"
78
77
'data-' + year
79
78
]"
80
79
@click.native =" setYear(year)" >
81
- <md-ink-ripple />
82
80
{{ year }}
83
- </button >
81
+ </md- button >
84
82
</div >
85
83
86
84
<div class =" md-datepicker-months" v-show =" currentView === 'month'" >
87
- <button
88
- class =" md-button md- dense md-datepicker-month"
85
+ <md- button
86
+ class =" md-dense md-datepicker-month"
89
87
v-for =" (month, index) in locale.months"
90
88
:key =" month"
91
89
:class =" {
92
90
'md-primary': isThisMonth(index),
93
91
'md-primary md-raised': isSelectedMonth(index),
94
92
}"
95
93
@click.native =" setMonth(index)" >
96
- <md-ink-ripple />
97
94
{{ month }}
98
- </button >
95
+ </md- button >
99
96
</div >
100
97
101
98
<div class =" md-datepicker-actions md-dialog-actions" >
You can’t perform that action at this time.
0 commit comments