Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
f1nality committed Oct 11, 2015
2 parents bd7b89b + b616844 commit 98268c0
Show file tree
Hide file tree
Showing 11 changed files with 55 additions and 46 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

0.1.1
-----
* [Feature] Added fade animation to sidebar application popup
* [Fix] Issue-10: Fixed ability to display multiple admin form fields on the same line (thanks to blueicefield for the report)
* [Fix] Fixed broken auth page layout for some translations
* [Fix] Issue-11: Fixed setup.py open file in case utf-8 path (thanks to edvm 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)
Expand Down
2 changes: 1 addition & 1 deletion jet/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.1.0'
VERSION = '0.1.1'
12 changes: 7 additions & 5 deletions jet/static/jet/css/_changeform.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

.help {
@extend .small;
clear: left;
color: $dim-text-color;
margin: 12px 0 0 160px;
}
Expand Down Expand Up @@ -74,11 +75,8 @@
}

.field-box {
padding-top: 6px;

&:first-child {
padding-top: 0;
}
margin-right: 20px;
float: left;
}

.file-upload {
Expand Down Expand Up @@ -471,4 +469,8 @@
font-weight: normal;
font-size: 12px;
}
}

.related-widget-wrapper {
float: left;
}
1 change: 1 addition & 0 deletions jet/static/jet/css/_login.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
.login-form {
.form-row {
padding: 6px 0;
clear: both;

label {
display: block;
Expand Down
16 changes: 5 additions & 11 deletions jet/static/jet/css/_sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -203,33 +203,27 @@
&-popup {
position: absolute;
top: 0;
left: $sidebar-width;
bottom: 0;
width: $sidebar-width;
color: $sidebar-popup-text-color;
background-color: $sidebar-popup-background-color;
z-index: 3;
overflow-y: auto;

&-container {
display: none;
}

&-item {
display: none;
}

&-background {
background-color: transparentize($sidebar-popup-overlay-color, 0.5);
position: absolute;
top: 0;
left: $sidebar-width;
bottom: 0;
right: 0;
background-color: $sidebar-popup-overlay-color;
opacity: 0.5;
z-index: 2;
}

&-item {
display: none;
}

&-title {
font-size: 12px;
font-weight: bold;
Expand Down
24 changes: 12 additions & 12 deletions jet/static/jet/css/themes/default/base.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jet/static/jet/css/themes/default/base.css.map

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions jet/static/jet/css/themes/green/base.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jet/static/jet/css/themes/green/base.css.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion jet/templates/admin/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@
</div>
{% endfor %}
</div>
<div class="sidebar-popup-background"></div>
</div>
{% endif %}
</div>
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
import os
from setuptools import setup, find_packages
from setuptools import setup, find_packages


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
path = os.path.join(os.path.dirname(__file__), fname)
try:
file = open(path, encoding='utf-8')
except TypeError:
file = open(path)
return file.read()


def get_install_requires():
Expand Down

0 comments on commit 98268c0

Please sign in to comment.