From a2d66213c4e813b87da1a4f8876c18bafaac5a61 Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Sat, 23 Apr 2011 10:26:56 -0400 Subject: YUI reset turns off bullets, indent. This restores those for regular text lists. --- themes/admin_wind/css/screen.css | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/themes/admin_wind/css/screen.css b/themes/admin_wind/css/screen.css index c96c5753..499712fa 100644 --- a/themes/admin_wind/css/screen.css +++ b/themes/admin_wind/css/screen.css @@ -26,7 +26,10 @@ body, html { font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; } -p { +p, +#g-content ul, +#g-content ol, +#g-content dl { margin-bottom: 1em; } @@ -87,6 +90,21 @@ a:hover, text-decoration: none; } +/* Lists ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ + +#g-content ul li { + list-style-type: disc; + margin-left: 1em; +} + +#g-content form ul li, +#g-content #g-action-status li, +#g-content #g-log-entries ul li { + list-style: none; + margin-left: 0; +} + + /* Forms ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ form { @@ -397,11 +415,6 @@ th { background-color: #fff; } -ul.enumeration li { - list-style-type: disc; - margin-left: 20px; -} - /*** ****************************************************************** * 3) Page layout containers *********************************************************************/ -- cgit v1.2.3 From bb23e28035293174f935345178f32638c09d0421 Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Sat, 23 Apr 2011 10:28:39 -0400 Subject: Remove enumeration unordered list class, it's no longer needed. --- modules/g2_import/views/admin_g2_import.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/g2_import/views/admin_g2_import.html.php b/modules/g2_import/views/admin_g2_import.html.php index 20b243d5..fb2b58c9 100644 --- a/modules/g2_import/views/admin_g2_import.html.php +++ b/modules/g2_import/views/admin_g2_import.html.php @@ -36,7 +36,7 @@
-
    +
    • $g2_version)) ?>
    • -- cgit v1.2.3 From 07f654c8d9918608c8229404585874ce5aba7ab2 Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Sat, 23 Apr 2011 11:11:48 -0400 Subject: Remove list styles from additional widgets. --- themes/admin_wind/css/screen.css | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/themes/admin_wind/css/screen.css b/themes/admin_wind/css/screen.css index 499712fa..177eb1e6 100644 --- a/themes/admin_wind/css/screen.css +++ b/themes/admin_wind/css/screen.css @@ -97,11 +97,16 @@ a:hover, margin-left: 1em; } -#g-content form ul li, -#g-content #g-action-status li, -#g-content #g-log-entries ul li { - list-style: none; - margin-left: 0; +form ul li, +#g-action-status li, +#g-log-entries li, +.g-buttonset li, +.g-buttonset-vertical li, +.g-paginator li, +.ui-sortable li, +.ui-widget-header li { + list-style: none !important; + margin-left: 0 !important; } -- cgit v1.2.3