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

github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2015-08-31 14:58:42 +0300
committerRobin Appelman <icewind@owncloud.com>2015-09-01 14:16:04 +0300
commitf2f8e36f6b62d9a762ecc3332c921fd253b622d4 (patch)
tree79e647998ea6ff66004b1a08b9ab74ff101edeb2 /css
parentf20e26b2def62ce65bc83f585286e46cf7b7b8bf (diff)
Add api that allows other app to register "previews" by mimetype
Diffstat (limited to 'css')
-rw-r--r--css/style.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/css/style.css b/css/style.css
index 71496c5..4fb366c 100644
--- a/css/style.css
+++ b/css/style.css
@@ -47,6 +47,34 @@
border-radius: 3px;
}
+#editor_container.hasPreview {
+ width: 100%;
+ height: 100%;
+ top: 0;
+ left: 0;
+ border: none;
+ margin-top: 45px;
+ border-radius: 0px;
+}
+
+#editor_container.hasPreview #preview {
+ display:block;
+}
+
+#editor_container.hasPreview #editor {
+ width: 50%;
+}
+
+#preview {
+ right: 0;
+ position: absolute;
+ top: 0;
+ display: none;
+ height: 100%;
+ width:50%;
+ padding-top: 46px;
+}
+
@media(max-width: 768px) {
#editor_container {
width: 100%;
@@ -57,6 +85,14 @@
margin-top: 45px;
border-radius: 0px;
}
+
+ #editor_container.hasPreview #preview {
+ display: none;
+ }
+
+ #editor_container.hasPreview #editor {
+ width: 100%;
+ }
}
#editor_close {