Browse Source

Fix ability to display multiple admin form fields on the same line

Denis K 9 years ago
parent
commit
4509071c59
2 changed files with 12 additions and 5 deletions
  1. 5 0
      CHANGELOG.rst
  2. 7 5
      jet/static/jet/css/_changeform.scss

+ 5 - 0
CHANGELOG.rst

@@ -1,6 +1,11 @@
 Changelog
 =========
 
+0.1.1
+-----
+* [Fix] Issue-10: Fixed ability to display multiple admin form fields on the same line (thanks to blueicefield for the report)
+
+
 0.1.0
 -----
 * [Fix] Issue-9: Fixed dashboard application templates not being loaded because of bad manifest (thanks to blueicefield for the report)

+ 7 - 5
jet/static/jet/css/_changeform.scss

@@ -30,6 +30,7 @@
 
     .help {
       @extend .small;
+      clear: left;
       color: $dim-text-color;
       margin: 12px 0 0 160px;
     }
@@ -74,11 +75,8 @@
     }
 
     .field-box {
-      padding-top: 6px;
-
-      &:first-child {
-        padding-top: 0;
-      }
+      margin-right: 20px;
+      float: left;
     }
 
     .file-upload {
@@ -471,4 +469,8 @@
     font-weight: normal;
     font-size: 12px;
   }
+}
+
+.related-widget-wrapper {
+  float: left;
 }