Compare commits

..

2 Commits

Author SHA1 Message Date
Fabio Caccamo ca71642ecf Updated CHANGELOG and version. 2021-03-02 09:52:48 +01:00
Fabio Caccamo 4369288928 Fixed sticky submit and pagination z-index issue with related modal. 2021-03-02 09:52:36 +01:00
4 changed files with 9 additions and 4 deletions
+3
View File
@@ -4,6 +4,9 @@ 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.15.5](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.15.5) - 2021-03-02
- Fixed sticky submit and pagination `z-index` issue with related modal.
## [0.15.4](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.15.4) - 2021-03-01
- Fixed sticky submit and pagination `z-index` issue with sticky `list_filter` and `django-json-widget`.
@@ -64,7 +64,7 @@
position: absolute;
top: 15px;
right: 15px;
z-index: 5;
z-index: 10;
}
@media (min-width:768px) {
.admin-interface .language-chooser {
@@ -332,11 +332,13 @@
position: sticky;
top: 40px;
float: right;
z-index: 30;
}
/* feature not available for django < 3.1.2 */
.admin-interface .module.filtered #toolbar + #changelist-filter {
position: absolute;
top: 0px;
z-index: 30;
}
}
{% endif %}
@@ -9,7 +9,7 @@
position: fixed;
bottom: 0;
right: 0;
z-index: 1100;
z-index: 40;
box-sizing: border-box;
padding-left: 15px;
padding-right: 15px;
@@ -58,7 +58,7 @@
position: fixed;
bottom: 0;
right: 0;
z-index: 1100;
z-index: 40;
box-sizing: border-box;
padding-left: 15px;
padding-right: 15px;
+1 -1
View File
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
__version__ = '0.15.4'
__version__ = '0.15.5'