]> git.openstreetmap.org Git - rails.git/commitdiff
Make sure text in Markdown help is aligned correctly
authorTom Hughes <tom@compton.nu>
Fri, 23 Mar 2012 00:19:06 +0000 (00:19 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 23 Mar 2012 00:19:06 +0000 (00:19 +0000)
app/assets/stylesheets/common.css.scss
app/assets/stylesheets/ltr.css.scss
app/assets/stylesheets/rtl.css.scss

index 735f36408c14f4cbb6e2a7d1d4c7b6e8e730bdb4..b6aaf7371b4ce80768cb503b255127340eb9053c 100644 (file)
@@ -1087,7 +1087,6 @@ abbr.geo {
     display: inline-block;
     vertical-align: top;
     background-color: #ddd;
-    margin-left: 15px;
     padding: 5px 10px 10px 10px;
     font-size: 12px;
 
@@ -1097,7 +1096,6 @@ abbr.geo {
 
     th {
       vertical-align: top;
-      padding: 0px 15px 0px 0px !important;
     }
 
     td {
@@ -1108,12 +1106,10 @@ abbr.geo {
 
     input.richtext_doedit {
       margin-top: 5px !important;
-      margin-right: 10px !important;
     }
 
     input.richtext_dopreview {
       margin-top: 5px !important;
-      margin-left: 10px !important;
     }
   }
 }
index 38dfe1b8cbe60a1f6f4fa591e10f02bce74b85dd..bbfebdbc1fc22aa8e4cc5ece6812be3e9789738a 100644 (file)
@@ -215,3 +215,28 @@ input.openid_url {
   background: image-url('openid_input.png') repeat-y left white;
   padding-left: 16px;
 }
+
+/* Rules for rich text editors */
+
+.richtext_container {
+  .richtext_help {
+    margin-left: 15px;
+
+    th {
+      text-align: left;
+      padding: 0px 15px 0px 0px !important;
+    }
+
+    td {
+      text-align: left;
+    }
+
+    input.richtext_doedit {
+      margin-right: 10px !important;
+    }
+
+    input.richtext_dopreview {
+      margin-left: 10px !important;
+    }
+  }
+}
index a8cf95cd3ff4dabf92085d59f6981fd9bf5a7330..439877669e5868de596cfb39be1f6841ac0e9926 100644 (file)
@@ -215,3 +215,28 @@ input.openid_url {
   background: image-url('openid_input.png') repeat-y right white;
   padding-right: 16px;
 }
+
+/* Rules for rich text editors */
+
+.richtext_container {
+  .richtext_help {
+    margin-right: 15px;
+
+    th {
+      text-align: right;
+      padding: 0px 0px 0px 15px !important;
+    }
+
+    td {
+      text-align: right;
+    }
+
+    input.richtext_doedit {
+      margin-left: 10px !important;
+    }
+
+    input.richtext_dopreview {
+      margin-right: 10px !important;
+    }
+  }
+}