File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1+ ## 0.3.1
2+ * Fix application of styling for date pickers when not inline. Closes #17 .
3+
14## 0.3.0
25* Add support for accepting various defaults when calling Vue.use(VCalendar, { ...defaults... })
36* Set default calendar pages to best show date picker values
Original file line number Diff line number Diff line change @@ -182,11 +182,8 @@ export default {
182182 },
183183 ... this .themeStyles ,
184184 };
185- if (! this .isInline ) {
186- styles .wrapper = {
187- border: ' 0' ,
188- };
189- }
185+ // Strip border from the wrapper when used in a popover
186+ if (! this .isInline && styles .wrapper ) styles .wrapper .border = ' 0' ;
190187 return styles;
191188 },
192189 popoverContentStyle () {
Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ export default {
274274 & :after
275275 display : block
276276 position : absolute
277- background-color : inherit
277+ background : inherit
278278 border : inherit
279279 border-width : 1px 1px 0 0
280280 width : 12px
You can’t perform that action at this time.
0 commit comments