Skip to content

Commit 12e7107

Browse files
authored
Merge pull request #7 from munichlinux/dev
Dev
2 parents be379c8 + 89211a8 commit 12e7107

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/calendar.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,14 @@ class Calendar extends React.Component {
170170
<button
171171
onClick={this.props.onApply}
172172
type="button"
173-
className="btn btn-default btn-block btn-success"
173+
className="btn btn-block btn-success"
174174
>
175175
Apply
176176
</button>
177177
<button
178178
onClick={this.props.onCancel}
179179
type="button"
180-
className="btn btn-default btn-block btn-default"
180+
className="btn btn-default btn-block"
181181
>
182182
Cancel
183183
</button>

src/css/sass/monthly_picker.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,14 +101,14 @@
101101
margin: 0.5px;
102102
padding: 0;
103103
font-size: 0.9em;
104-
border: 1px solid transparent;
104+
border: 2px solid transparent;
105105

106106
button {
107107
padding: 15px;
108108
}
109109

110110
&:hover {
111-
border-color: #CCC;
111+
border-color: $selected_month;
112112
}
113113

114114
&.highlight {

test/components/app.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ describe('<app/>', () => {
4343
onCancel={onCancel}
4444
/>);
4545

46-
wrapper.find('.shortcuts .btn-default').at(1).simulate('click');
46+
wrapper.find('.shortcuts .btn-default').at(0).simulate('click');
4747
expect(onCancel).to.have.property('callCount', 1);
4848
});
4949
});

0 commit comments

Comments
 (0)