Browse Source

Upgrading to wagtail 2.2 (#24)

Fixes #19
Vince Salvino 6 năm trước cách đây
mục cha
commit
d8ab7ed1ce
2 tập tin đã thay đổi với 13 bổ sung8 xóa
  1. 11 6
      coderedcms/static/css/codered-admin.css
  2. 2 2
      setup.py

+ 11 - 6
coderedcms/static/css/codered-admin.css

@@ -45,6 +45,11 @@ h1, h2, h3, h4, h5, h6,
     font-size:1em;
 }
 
+body.ready input[type='checkbox'], body.ready input[type='radio'] {
+    background-color:unset;
+    border:none;
+}
+
 .halloeditor, .tagit, input, select, textarea {
     background-color:#eee;
     border:1px solid #eee;
@@ -52,17 +57,17 @@ h1, h2, h3, h4, h5, h6,
     padding-bottom:0.5em;
     font-weight:normal;
 }
-input[type='checkbox'], input[type='radio'] {
-    border:1.5px solid #ccc;
-}
+
 .halloeditor:hover, .tagit:hover, input:hover, select:hover, textarea:hover {
     background-color:#eee;
     border:1px solid #eee;
 }
-input[type='checkbox']:hover, input[type='radio']:hover {
-    border:1.5px solid #ccc;
+
+input[type='checkbox'], input[type='radio'] {
+    height:unset;
 }
-input[type="checkbox"]::before, input[type="radio"]::before {
+input[type='checkbox']::before, input[type='radio']::before {
+    border:1.5px solid #ccc;
     position: relative;
     top:unset;
 }

+ 2 - 2
setup.py

@@ -9,7 +9,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
 
 setup(
     name='coderedcms',
-    version='0.7.1',
+    version='0.8.0',
     packages=find_packages(),
     include_package_data=True,
     license='BSD License',
@@ -37,7 +37,7 @@ setup(
         'django-bootstrap4',
         'django>=1.11,<2.1',
         'pygments>=2.2.0,<3.0',
-        'wagtail==2.1.*',
+        'wagtail==2.2.*',
         'wagtailfontawesome>=1.1.3,<2.0',
     ],
     entry_points="""