diff --git a/src/app/main/apps/file-manager/sidenavs/details/details.component.html b/src/app/main/apps/file-manager/sidenavs/details/details.component.html index df804d9e..3a5e0dc4 100644 --- a/src/app/main/apps/file-manager/sidenavs/details/details.component.html +++ b/src/app/main/apps/file-manager/sidenavs/details/details.component.html @@ -17,10 +17,10 @@
-
{{selected.name}}
+
{{selected.name}}
Edited - : {{selected.modified}} + : {{selected.modified}}
@@ -30,15 +30,14 @@
+
- +
- - - Available Offline - - +
+ Available Offline +
Info
diff --git a/src/app/main/apps/file-manager/sidenavs/details/details.component.scss b/src/app/main/apps/file-manager/sidenavs/details/details.component.scss index 10680ba9..a9ebdd0b 100644 --- a/src/app/main/apps/file-manager/sidenavs/details/details.component.scss +++ b/src/app/main/apps/file-manager/sidenavs/details/details.component.scss @@ -5,12 +5,69 @@ height: 100%; > .header { - flex: 0 1 200px; - + flex: 0 1 auto; + height: 200px; + min-height: 200px; + max-height: 200px; } > .content { flex: 1 0 auto; + .file-details { + + .preview { + height: 240px; + } + + .offline-switch { + padding-bottom: 16px; + font-weight: 500; + } + + .title { + padding: 16px 0; + } + + table { + width: 100%; + text-align: left; + + tr { + + th, td { + padding: 16px 0; + } + + th { + + } + + td { + + } + + &.type { + text-transform: capitalize; + } + + &.size { + } + + &.location { + } + + &.owner { + text-transform: capitalize; + } + + &.opened { + } + + &.created { + } + } + } + } } } diff --git a/src/app/main/apps/file-manager/sidenavs/main/main.component.html b/src/app/main/apps/file-manager/sidenavs/main/main.component.html index 8af508c9..d640990a 100644 --- a/src/app/main/apps/file-manager/sidenavs/main/main.component.html +++ b/src/app/main/apps/file-manager/sidenavs/main/main.component.html @@ -1,3 +1,54 @@ -

- main works! -

+ +
+ + + +
+ + + + + diff --git a/src/app/main/apps/file-manager/sidenavs/main/main.component.scss b/src/app/main/apps/file-manager/sidenavs/main/main.component.scss index e69de29b..678b3c81 100644 --- a/src/app/main/apps/file-manager/sidenavs/main/main.component.scss +++ b/src/app/main/apps/file-manager/sidenavs/main/main.component.scss @@ -0,0 +1,11 @@ +:host { + display: flex; + flex-direction: column; + flex: 1 0 auto; + height: 100%; + + > .header { + flex: 0 1 auto; + border-bottom: 1px solid rgba(0, 0, 0, 0.12); + } +}