Skip to content

Commit

Permalink
Merge branch 'release-1.5.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
abidibo committed May 15, 2019
2 parents 095ca38 + eb6fb47 commit 3ed4882
Show file tree
Hide file tree
Showing 11 changed files with 52 additions and 9 deletions.
1 change: 1 addition & 0 deletions baton/static/admin/css/responsive.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* empty */
2 changes: 1 addition & 1 deletion baton/static/baton/app/dist/baton.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion baton/static/baton/app/dist/baton.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion baton/static/baton/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "baton",
"version": "1.5.1",
"version": "1.5.2",
"description": "Django Baton App",
"main": "index.js",
"scripts": {
Expand Down
13 changes: 13 additions & 0 deletions baton/static/baton/app/src/styles/_changeform.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,16 @@
font-weight: bold;
}
}

// tabs
.nav-tabs {
.nav-link {
background: #fafafa;
border: 1px solid #dee2e6;
font-weight: bold;
}
}

.tab-content {
padding-top: 1rem;
}
8 changes: 8 additions & 0 deletions baton/static/baton/app/src/styles/_changelist.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@
}
}

.action-counter {
display: block;

@include media-breakpoint-up(sm) {
display: inline;
}
}

.changelist-filter-toggler {
align-items: center;
color: $filter-toggler-color !important;
Expand Down
7 changes: 7 additions & 0 deletions baton/static/baton/app/src/styles/_dashboard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
}

.addlink,
.viewlink,
.changelink {
&::before {
@extend %font-awesome;
Expand All @@ -122,4 +123,10 @@
}
}

.viewlink {
&::before {
content: '\f26c';
}
}

}
1 change: 1 addition & 0 deletions baton/static/baton/app/src/styles/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

&:hover {
color: $navbar-link-color-hover;
text-decoration: none;
}

&.dropdown-item {
Expand Down
19 changes: 16 additions & 3 deletions baton/static/baton/app/src/styles/_placeholders.scss
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,7 @@
flex-direction: row;
flex-grow: 1;

+ p,
+ .help /* django 1.11 */ {
+ p /* django 1.11 */ {
flex-basis: 100%;
margin-left: 0 !important;

Expand Down Expand Up @@ -329,7 +328,21 @@
@extend .form-text;
@extend .text-muted;
@extend .ml-3;
font-style: italic;
flex-basis: 100% !important;
font-size: .9rem;
margin-left: 0 !important;

@include media-breakpoint-up(md) {
margin-left: 20% !important;
}

@include media-breakpoint-up(lg) {
margin-left: 10% !important;
}

> ul {
padding-left: 1.2rem;
}
}

div.help {
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.5.1'
version = u'1.5.2'
# The full version, including alpha/beta/rc tags.
release = u'1.5.1'
release = u'1.5.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='django-baton',
version='1.5.1',
version='1.5.2',
packages=['baton', 'baton.autodiscover', 'baton.templatetags'],
include_package_data=True,
license='MIT License',
Expand Down

0 comments on commit 3ed4882

Please sign in to comment.