diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2011-04-23 10:26:56 -0400 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2011-04-23 10:26:56 -0400 |
commit | a2d66213c4e813b87da1a4f8876c18bafaac5a61 (patch) | |
tree | ccd08b507945a2b1c79725d8dbae84f45b3f4a54 | |
parent | ce14f5fb906335c35bdb2754bb0cd482e7526f09 (diff) |
YUI reset turns off bullets, indent. This restores those for regular text lists.
-rw-r--r-- | themes/admin_wind/css/screen.css | 25 |
1 files 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 *********************************************************************/ |