From 2f332651d3c431b4a3b24b377dc45dcd54e7efce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 4 Jul 2018 13:33:56 +0200 Subject: [PATCH] Add transition when enabling/disabling apps MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- settings/css/settings.scss | 13 +++++++++---- settings/src/components/appList.vue | 25 +++++++++++++++---------- 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/settings/css/settings.scss b/settings/css/settings.scss index 0cbef8693d..1ca14b8f1d 100644 --- a/settings/css/settings.scss +++ b/settings/css/settings.scss @@ -989,10 +989,15 @@ span.version { .section { cursor: pointer; } + .app-list-move { + transition: transform 1s; + } &.installed { - display: table; - width: 100%; - height: auto; + .apps-list-container { + display: table; + width: 100%; + height: auto; + } margin-bottom: 100px; .section { display: table-row; @@ -1583,4 +1588,4 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { user-select: none; } } -} +} \ No newline at end of file diff --git a/settings/src/components/appList.vue b/settings/src/components/appList.vue index ddef5aa216..dd19c44d88 100644 --- a/settings/src/components/appList.vue +++ b/settings/src/components/appList.vue @@ -24,18 +24,23 @@