summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_files.scss
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-07-28 16:41:57 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-07-29 10:04:28 -0400
commitaf246bb44b7968b9f880d819e3aa04342846fccc (patch)
treea7fc74d5bffa684aee1a9d445c47b9f9d25835e7 /web/sass-files/sass/partials/_files.scss
parentb0c64c73f929c9021196706fa1352ac4aa6f95a4 (diff)
downloadchat-af246bb44b7968b9f880d819e3aa04342846fccc.tar.gz
chat-af246bb44b7968b9f880d819e3aa04342846fccc.tar.bz2
chat-af246bb44b7968b9f880d819e3aa04342846fccc.zip
Updated ViewImage modal dialog to include details about non-image files
Diffstat (limited to 'web/sass-files/sass/partials/_files.scss')
-rw-r--r--web/sass-files/sass/partials/_files.scss32
1 files changed, 32 insertions, 0 deletions
diff --git a/web/sass-files/sass/partials/_files.scss b/web/sass-files/sass/partials/_files.scss
index e8ea8817d..58b36f483 100644
--- a/web/sass-files/sass/partials/_files.scss
+++ b/web/sass-files/sass/partials/_files.scss
@@ -157,3 +157,35 @@
color: grey;
}
}
+
+.file-details__container {
+ display: flex;
+
+ .file-details {
+ width: 320px;
+ height: 270px;
+ padding: 14px;
+ text-align: left;
+ vertical-align: top;
+
+ .file-details__name {
+ font-size: 16px;
+ }
+ .file-details__info {
+ color: grey;
+ }
+ }
+ .file-details__preview {
+ width: 320px;
+ height: 270px;
+ border-right: 1px solid #ddd;
+ vertical-align: center;
+
+ // helper to center the image icon in the preview window
+ .file-details__preview-helper {
+ height: 100%;
+ display: inline-block;
+ vertical-align: middle;
+ }
+ }
+}