nextcloud-libraries / nextcloud-vue

🍱 Vue.js components for Nextcloud app development ✌ https://npmjs.org/@nextcloud/vue
https://nextcloud-vue-components.netlify.app/
Other
213 stars 84 forks source link

Add a shortcut methode to DatetimePicker #1419

Open jakobroehrl opened 3 years ago

jakobroehrl commented 3 years ago

I would like to use the DatetimePicker shortcut methode: https://mengxiong10.github.io/vue2-datepicker/index.html#Shortcut https://github.com/nextcloud/deck/pull/2323

dartcafe commented 3 years ago

It works, but the mx-container has a position left: -127px and so it is hidden. you can force it to move with adding

.my-class .mx-datepicker-main.mx-datepicker-popup {
    left: 0 !important;
}

grafik

But I did not test any side effects.