Browse Source

Some editor tweaks.

Frederic G. MARAND 8 years ago
parent
commit
b14cc77c22
4 changed files with 17 additions and 20 deletions
  1. 2 16
      .gitignore
  2. 3 3
      textcircle.css
  3. 1 1
      textcircle.html
  4. 11 0
      textcircle.scss

+ 2 - 16
.gitignore

@@ -60,19 +60,5 @@ node_modules
 *.ipr
 *.iws
 
-## Plugin-specific files:
-
-# IntelliJ
-/out/
-
-# mpeltonen/sbt-idea plugin
-.idea_modules/
-
-# JIRA plugin
-atlassian-ide-plugin.xml
-
-# Crashlytics plugin (for Android Studio and IntelliJ)
-com_crashlytics_export_strings.xml
-crashlytics.properties
-crashlytics-build.properties
-
+# SASS
+*.css.map

+ 3 - 3
textcircle.css

@@ -3,7 +3,7 @@ body {
 	padding-top: 70px;
 }
 */
+.top-margin {
+  margin-top: 50px; }
 
-.top-margin{
-	margin-top: 50px;
-}
+/*# sourceMappingURL=textcircle.css.map */

+ 1 - 1
textcircle.html

@@ -23,7 +23,7 @@
 
 <template name="editor">
 <h2>doc id: {{ docid }}</h2>
-  {{> sharejsCM docid=docid id="editor" onRender=config }}
+  {{> sharejsCM docid=docid onRender=config id="editor" }}
 </template>
 
 <template name="viewer">

+ 11 - 0
textcircle.scss

@@ -0,0 +1,11 @@
+/* Workaround BS3 fixed navbar height
+body {
+	padding-top: 70px;
+}
+*/
+
+$topMargin: 50px;
+
+.top-margin{
+	margin-top: $topMargin;
+}