summaryrefslogtreecommitdiff
path: root/django/contrib/admin/media/css/patch-iewin.css
diff options
context:
space:
mode:
authorWilson Miner <wminer@gmail.com>2008-10-31 23:01:38 +0000
committerWilson Miner <wminer@gmail.com>2008-10-31 23:01:38 +0000
commit50535505a9fe0b247a675b02515c9f12cc3b5e6e (patch)
tree422b8e3a24078e4814bf356640875c6c40d49b83 /django/contrib/admin/media/css/patch-iewin.css
parent3028e85222f12bf64a1b3bad34f88e432b3f971f (diff)
Added IE conditional comments to contrib.admin base template to block CSS from IE5 and lower and serve a patch to IE6 with IE conditional comments. Removed dependency on CSS hacks and empty null.css file.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9300 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/contrib/admin/media/css/patch-iewin.css')
-rw-r--r--django/contrib/admin/media/css/patch-iewin.css47
1 files changed, 0 insertions, 47 deletions
diff --git a/django/contrib/admin/media/css/patch-iewin.css b/django/contrib/admin/media/css/patch-iewin.css
deleted file mode 100644
index ab0b9451e0..0000000000
--- a/django/contrib/admin/media/css/patch-iewin.css
+++ /dev/null
@@ -1,47 +0,0 @@
-/* Keep header from flowing off the page */
-
-* html #container {
- position: static;
-}
-
-/* Put the right sidebars back on the page */
-
-* html .colMS #content-related {
- margin-right: 0;
- margin-left: 10px;
- position: static;
-}
-
-/* Put the left sidebars back on the page */
-
-* html .colSM #content-related {
- margin-right: 10px;
- margin-left: -115px;
- position: static;
-}
-
-* html .form-row {
- height: 1%;
-}
-
-/* Proper fixed width for dashboard in IE6 */
-
-* html .dashboard #content {
- width: 768px;
-}
-
-* html .dashboard #content-main {
- width: 535px;
-}
-
-/* Fix right margin for changelist filters in IE6 */
-
-* html #changelist-filter ul {
- margin-right: -10px;
-}
-
-/* IE ignores min-height, but treats height as if it were min-height */
-
-* html .change-list .filtered {
- height: 400px;
-} \ No newline at end of file