Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a4949c75a | |||
| f36e904faf | |||
| f9a6f501e1 | |||
| f9629f5ef1 | |||
| 084b0d65f3 | |||
| 5935ee9d40 | |||
| ac66bfddb9 | |||
| 62ccb31793 |
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.13.1](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.13.1) - 2020-08-18
|
||||||
|
- Improved header and nav-sidebar style.
|
||||||
|
- Added `max-width` to logo.
|
||||||
|
- Added `requirements-dev.txt`
|
||||||
|
|
||||||
|
## [0.13.0](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.13.0) - 2020-08-05
|
||||||
|
- Improved nav-sidebar style (`django>=3.1` support).
|
||||||
|
- Improved header style.
|
||||||
|
|
||||||
## [0.12.3](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.12.3) - 2020-07-20
|
## [0.12.3](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.12.3) - 2020-07-20
|
||||||
- Fixed unreadable text in autocomplete multi-selects. #83
|
- Fixed unreadable text in autocomplete multi-selects. #83
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
[](https://pypi.org/project/django-admin-interface/)
|
[](https://pypi.org/project/django-admin-interface/)
|
||||||
[](https://pepy.tech/project/django-admin-interface)
|
[](https://pepy.tech/project/django-admin-interface)
|
||||||
[](https://github.com/fabiocaccamo/django-admin-interface/)
|
[](https://github.com/fabiocaccamo/django-admin-interface/)
|
||||||
|
[](https://badges.pufler.dev)
|
||||||
[](https://github.com/fabiocaccamo/django-admin-interface/blob/master/LICENSE.txt)
|
[](https://github.com/fabiocaccamo/django-admin-interface/blob/master/LICENSE.txt)
|
||||||
|
|
||||||
[](https://travis-ci.org/fabiocaccamo/django-admin-interface)
|
[](https://travis-ci.org/fabiocaccamo/django-admin-interface)
|
||||||
|
|||||||
@@ -83,6 +83,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.admin-interface #branding h1 img.logo {
|
.admin-interface #branding h1 img.logo {
|
||||||
|
max-width: 400px;
|
||||||
max-height:100px;
|
max-height:100px;
|
||||||
margin-top:10px;
|
margin-top:10px;
|
||||||
margin-bottom:10px;
|
margin-bottom:10px;
|
||||||
@@ -368,13 +369,13 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
|
|
||||||
/* fix nav-sidebar (added in django 3.1.0) */
|
/* fix nav-sidebar (added in django 3.1.0) */
|
||||||
.admin-interface #toggle-nav-sidebar {
|
.admin-interface #toggle-nav-sidebar {
|
||||||
top: 11px;
|
top: 10px;
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: 20;
|
z-index: 20;
|
||||||
flex: 0 0 30px;
|
flex: 0 0 30px;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 40px;
|
height: 45px;
|
||||||
margin-top: 11px;
|
margin-top: 10px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@@ -405,7 +406,7 @@ body.admin-interface .paginator a.showall:visited {
|
|||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
padding: 18px 40px 40px 0px;
|
padding: 40px 40px 40px 0px;
|
||||||
border-top: none;
|
border-top: none;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
border-left: none;
|
border-left: none;
|
||||||
|
|||||||
@@ -3,6 +3,12 @@
|
|||||||
color: {{ theme.css_header_text_color }};
|
color: {{ theme.css_header_text_color }};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.admin-interface #header + #main {
|
||||||
|
{% if theme.css_header_background_color != theme.css_module_background_color %}
|
||||||
|
border-top: 10px solid {{ theme.css_module_background_color }};
|
||||||
|
{% endif %}
|
||||||
|
}
|
||||||
|
|
||||||
.admin-interface .environment-label {
|
.admin-interface .environment-label {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
__version__ = '0.13.0'
|
__version__ = '0.13.1'
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
codecov
|
||||||
|
coverage
|
||||||
|
tox
|
||||||
Reference in New Issue
Block a user