Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c236c6641 | |||
| 91b3809d61 | |||
| f918551971 | |||
| 149c95311f | |||
| 858f077bd4 | |||
| e46daa8f99 | |||
| e3320b2034 | |||
| 8991863fb1 |
+1
-1
@@ -1,6 +1,6 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Fabio Caccamo - fabio.caccamo@gmail.com
|
||||
Copyright (c) 2016 Fabio Caccamo - fabio.caccamo@gmail.com
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
||||
@@ -4,8 +4,8 @@ django-admin-interface is a modern **flat admin interface customizable by the ad
|
||||
You can use the builtin **django-theme** or create your own and **customize** **title, logo and colors**.
|
||||
|
||||
##Requirements
|
||||
- Python 2.6, Python 2.7
|
||||
- Django 1.6.5 through Django 1.8.4
|
||||
- Python 2.6, Python 2.7, Python 3.4
|
||||
- Django 1.6.5 through Django 1.9
|
||||
|
||||
##Installation
|
||||
- Run `pip install django-admin-interface`
|
||||
@@ -13,9 +13,9 @@ You can use the builtin **django-theme** or create your own and **customize** **
|
||||
```python
|
||||
INSTALLED_APPS = (
|
||||
#...
|
||||
'admin_interface',
|
||||
'flat',
|
||||
'colorfield',
|
||||
'admin_interface',
|
||||
#...
|
||||
'django.contrib.admin',
|
||||
#...
|
||||
@@ -45,7 +45,7 @@ INSTALLED_APPS = (
|
||||
##License
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Fabio Caccamo - fabio.caccamo@gmail.com
|
||||
Copyright (c) 2016 Fabio Caccamo - fabio.caccamo@gmail.com
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
||||
@@ -220,9 +220,22 @@
|
||||
min-width:320px !important;
|
||||
}
|
||||
|
||||
.login #content {
|
||||
padding:0px 30px 10px 30px !important;
|
||||
}
|
||||
|
||||
/* same lateral padding as in logged view */
|
||||
.login #header {
|
||||
padding:10px 25px !important;
|
||||
padding:15px 30px !important;
|
||||
}
|
||||
|
||||
.login #branding h1 {
|
||||
margin-right:0;
|
||||
}
|
||||
|
||||
.login #branding h1 img.logo {
|
||||
max-width:100%;
|
||||
margin-right:0;
|
||||
}
|
||||
|
||||
/* login button right aligned */
|
||||
@@ -407,6 +420,13 @@
|
||||
}
|
||||
|
||||
|
||||
/* sorl-thumbnail - improved AdminImageMixin widget layout */
|
||||
|
||||
a.thumbnail + input[type="checkbox"] {
|
||||
margin:10px 0;
|
||||
}
|
||||
|
||||
|
||||
/* ckeditor + light theme - https://github.com/Ikimea/ckeditor-light-theme */
|
||||
|
||||
.cke_inner, .cke_wysiwyg_frame {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
__version__ = '0.1.4'
|
||||
__version__ = '0.1.5'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user