Skip to content

Commit

Permalink
Merge branch 'hotfix-1.3.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
abidibo committed Mar 1, 2019
2 parents 59ff19d + 8a4650c commit 544065c
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
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.3.3",
"version": "1.3.4",
"description": "Django Baton App",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion baton/static/baton/app/src/core/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let Navbar = {
}).remove()
// dropdown
let dropdown = $('<div/>', { 'class': 'dropdown' }).appendTo($('#user-tools'))
let dropdownMenu = $('<div/>', { 'class': 'dropdown-menu' }).appendTo(dropdown)
let dropdownMenu = $('<div/>', { 'class': 'dropdown-menu dropdown-menu-right' }).appendTo(dropdown)
$('#user-tools strong')
.addClass('dropdown-toggle btn btn-default')
.attr('data-toggle', 'dropdown')
Expand Down
5 changes: 3 additions & 2 deletions baton/static/baton/app/src/styles/_content.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
// scss-lint:disable IdSelector PlaceholderInExtend NestingDepth
#content {
background: $content-bg;
padding-left: 0;
padding-right: 0;
padding-left: 0 !important;
padding-right: 0 !important;
padding-top: 0 !important;

> h1 {
@extend .mb-0;
Expand Down
3 changes: 1 addition & 2 deletions baton/static/baton/app/src/styles/_navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
align-items: center;
background: $navbar-bg;
color: $navbar-color;
flex-direction: row !important;

strong {
color: $navbar-color;
Expand Down Expand Up @@ -42,8 +43,6 @@
}

.dropdown-menu {
left: 0;

@include media-breakpoint-up(md) {
left: auto;
right: 0;
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.3.3'
version = u'1.3.4'
# The full version, including alpha/beta/rc tags.
release = u'1.3.3'
release = u'1.3.4'

# 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.3.3',
version='1.3.4',
packages=['baton', 'baton.autodiscover', 'baton.templatetags'],
include_package_data=True,
license='MIT License',
Expand Down

0 comments on commit 544065c

Please sign in to comment.