Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2022-08-23 15:26:37 +0300
committerJulius Härtl <jus@bitgrid.net>2022-09-01 15:15:38 +0300
commitaa847a7fce45a61c82b809ead8ac790c5ae72150 (patch)
tree50e9c16462c48d43b5925bda06783369ff3d0f1d
parent0667890656230018e4dfff40ab879a769941a3f1 (diff)
Drop vue specific styles
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-rw-r--r--core/css/apps.scss39
1 files changed, 0 insertions, 39 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss
index 721d52b6512..93cbb8c544a 100644
--- a/core/css/apps.scss
+++ b/core/css/apps.scss
@@ -1381,42 +1381,3 @@ $outter-margin: math.div($popoveritem-height - $popovericon-size, 2);
display: flex;
}
}
-
-
-/** To be moved to vue components */
-#app-sidebar-vue:not(.app-sidebar--full) {
- position: sticky;
- border-radius: 0 var(--body-container-radius) var(--body-container-radius) 0;
- height: 100%;
-}
-
-#app-navigation-vue {
- position: sticky;
- height: 100%;
- padding: 6px;
- background-color: var(--color-main-background-blur);
- backdrop-filter: var(--filter-background-blur);
- -webkit-backdrop-filter: var(--filter-background-blur);
-}
-
-#content-vue {
- box-sizing: border-box;
- // padding is included in height
- margin: var(--body-container-margin);
- margin-top: 50px;
- display: flex;
- width: calc(100% - var(--body-container-margin) * 2);
- height: var(--body-height);
- overflow: hidden;
- padding: 0;
-
- &:not(.with-sidebar--full) {
- position: fixed;
- }
-}
-
-#app-content-vue {
- position: initial;
- height: 100%;
- overflow: scroll;
-}