From 893a70b62db41031348ad1010653f48a126b3244 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sun, 3 Oct 2010 02:46:12 +0000 Subject: [PATCH] - Patch #924040 by dstol, Jeff Burnz: fix misalignment of content types on 'create new content'. --- themes/seven/ie6.css | 2 -- themes/seven/style.css | 6 ------ themes/seven/template.php | 2 +- 3 files changed, 1 insertion(+), 9 deletions(-) diff --git a/themes/seven/ie6.css b/themes/seven/ie6.css index 2c71e4b6bd9c..149614dc5da5 100644 --- a/themes/seven/ie6.css +++ b/themes/seven/ie6.css @@ -8,13 +8,11 @@ ul.links li a, #page { height: 1%; } -#block-system-main ul.node-type-list li a, #block-system-main ul.admin-list li a { height: 1px; position: relative; display: block; } -#block-system-main ul.node-type-list li div.description a, #block-system-main ul.admin-list li div.description a { display: inline; } diff --git a/themes/seven/style.css b/themes/seven/style.css index 3c4f57ec11ca..794435a3076f 100644 --- a/themes/seven/style.css +++ b/themes/seven/style.css @@ -379,7 +379,6 @@ ul.inline li { #secondary-links ul.links li a.active { background: #333; } -ul.node-type-list li, ul.admin-list li { position: relative; padding-left: 30px; @@ -411,10 +410,6 @@ ul.admin-list.compact li { ul.admin-list li:last-child { border-bottom: none; } -ul.node-type-list .label { - font-size: 1.154em; -} -ul.node-type-list li a, ul.admin-list li a { margin-left: -30px; padding: 0px 0 4px 30px; @@ -424,7 +419,6 @@ ul.admin-list.compact li a { margin-left: 0; padding: 0; } -ul.node-type-list li div.description a, ul.admin-list li div.description a { margin-left: 0px; padding: 0px; diff --git a/themes/seven/template.php b/themes/seven/template.php index f49261b17cd8..e87868c727ef 100644 --- a/themes/seven/template.php +++ b/themes/seven/template.php @@ -38,7 +38,7 @@ function seven_node_add_list($variables) { $content = $variables['content']; $output = ''; if ($content) { - $output = '<ul class="node-type-list">'; + $output = '<ul class="admin-list">'; foreach ($content as $item) { $output .= '<li class="clearfix">'; $output .= '<span class="label">' . l($item['title'], $item['href'], $item['localized_options']) . '</span>'; -- GitLab