mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
feat: Enhance template picker size and layout depending on aspect ratio
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
4822f104f7
commit
032e3d3ad5
3 changed files with 10 additions and 9 deletions
|
|
@ -24,7 +24,7 @@
|
|||
<NcModal v-if="opened"
|
||||
:clear-view-delay="-1"
|
||||
class="templates-picker"
|
||||
size="normal"
|
||||
size="large"
|
||||
@close="close">
|
||||
<form class="templates-picker__form"
|
||||
:style="style"
|
||||
|
|
@ -47,9 +47,6 @@
|
|||
|
||||
<!-- Cancel and submit -->
|
||||
<div class="templates-picker__buttons">
|
||||
<button @click="close">
|
||||
{{ t('files', 'Cancel') }}
|
||||
</button>
|
||||
<input type="submit"
|
||||
class="primary"
|
||||
:value="t('files', 'Create')"
|
||||
|
|
@ -75,7 +72,6 @@ import TemplatePreview from '../components/TemplatePreview.vue'
|
|||
|
||||
const border = 2
|
||||
const margin = 8
|
||||
const width = margin * 20
|
||||
|
||||
export default {
|
||||
name: 'TemplatePicker',
|
||||
|
|
@ -136,6 +132,11 @@ export default {
|
|||
* @return {object}
|
||||
*/
|
||||
style() {
|
||||
// Fallback to 16:9 landscape ratio
|
||||
const ratio = this.provider.ratio ? this.provider.ratio : 1.77
|
||||
// Landscape templates should be wider than tall ones
|
||||
// We fit 3 templates per row at max for landscape and 4 for portrait
|
||||
const width = ratio > 1 ? margin * 30 : margin * 20
|
||||
return {
|
||||
'--margin': margin + 'px',
|
||||
'--width': width + 'px',
|
||||
|
|
@ -275,7 +276,7 @@ export default {
|
|||
|
||||
&__buttons {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
justify-content: end;
|
||||
padding: calc(var(--margin) * 2) var(--margin);
|
||||
position: sticky;
|
||||
bottom: 0;
|
||||
|
|
|
|||
4
dist/files-main.js
vendored
4
dist/files-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files-main.js.map
vendored
2
dist/files-main.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue