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>2013-08-03 19:48:13 +0400
committerRobin Appelman <icewind@owncloud.com>2013-08-03 19:48:13 +0400
commit7172d9a14c0cb8f4b1d3f7d10e988e19b2ff27b4 (patch)
tree443b86525fa4d03eb4515f815bf128ae8dc01117 /css
parent063d69aca4ba69557295446e2aca7f27744cde46 (diff)
dont use js for texteditor sizing
Diffstat (limited to 'css')
-rw-r--r--css/style.css23
1 files changed, 19 insertions, 4 deletions
diff --git a/css/style.css b/css/style.css
index 4807b70..09d744d 100644
--- a/css/style.css
+++ b/css/style.css
@@ -1,10 +1,25 @@
-#editor{
- position: fixed;
+#editor {
+ position: relative;
display: block;
- top: 6.8em;
+ top: 0;
+ left: 0;
z-index: 20;
+ height: 100%;
+ width: 100%;
}
-#editor_save{
+
+#editor_container{
+ position: absolute;
+ display: block;
+ top: 0;
+ left: 0;
+ padding-top: 38px;
+ height: 100%;
+ width: 100%;
+ box-sizing: border-box;
+}
+
+#editor_save {
margin-left: 7px;
float: left;
}