Skip to content

Commit 8c1d2a6

Browse files
committed
Merge tag '2.1.4' into develop
2 parents 514e51b + 5723db4 commit 8c1d2a6

File tree

5 files changed

+434
-501
lines changed

5 files changed

+434
-501
lines changed

src/FileManager.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="fm d-flex flex-column"
33
v-bind:class="{ 'fm-full-screen': fullScreen }">
44
<navbar></navbar>
5-
<div class="row fm-body">
5+
<div class="fm-body">
66
<notification></notification>
77
<context-menu></context-menu>
88
<modal v-if="showModal"></modal>
@@ -204,7 +204,10 @@ export default {
204204
}
205205
206206
.fm-body {
207+
display: flex;
207208
height: 100%;
209+
margin-right: -15px;
210+
margin-left: -15px;
208211
position: relative;
209212
padding-top: 1rem;
210213
padding-bottom: 1rem;

src/components/blocks/InfoBlock.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<div class="row justify-content-between fm-info-block">
2+
<div class="justify-content-between fm-info-block">
33
<div class="col-auto">
44
<span v-show="selectedCount">
55
{{ `${lang.info.selected} ${selectedCount}` }}
@@ -146,6 +146,9 @@ export default {
146146

147147
<style lang="scss">
148148
.fm-info-block {
149+
display: flex;
150+
margin-right: -15px;
151+
margin-left: -15px;
149152
padding-top: 0.2rem;
150153
padding-bottom: 0.4rem;
151154
border-bottom: 1px solid #6d757d;

src/components/modals/additions/Cropper.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,10 @@ export default {
272272
.fm-additions-cropper {
273273
overflow: hidden;
274274
275+
& > .row {
276+
flex-wrap: nowrap;
277+
}
278+
275279
.cropper-block {
276280
overflow: hidden;
277281

src/store/settings/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default {
1414
acl: null,
1515

1616
// App version
17-
version: '2.1.1',
17+
version: '2.1.4',
1818

1919
// this headers will be merged with default headers
2020
headers: {},

0 commit comments

Comments
 (0)