diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-04-23 13:11:01 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-04-23 13:11:01 -0700 |
commit | e241002008a3a708851abf6d6e17859901ee66d5 (patch) | |
tree | 275f6a3238cf5b5dc1dbb846fb4ad9a004a6da14 | |
parent | c1df782a75193d4ee33ec1d0be10739f9320705f (diff) | |
parent | 07f654c8d9918608c8229404585874ce5aba7ab2 (diff) |
Merge branch 'master' of git://github.com/ckieffer/gallery3 into chad
-rw-r--r-- | modules/g2_import/views/admin_g2_import.html.php | 2 | ||||
-rw-r--r-- | themes/admin_wind/css/screen.css | 30 |
2 files changed, 25 insertions, 7 deletions
diff --git a/modules/g2_import/views/admin_g2_import.html.php b/modules/g2_import/views/admin_g2_import.html.php index 1094524f..cf5e4755 100644 --- a/modules/g2_import/views/admin_g2_import.html.php +++ b/modules/g2_import/views/admin_g2_import.html.php @@ -49,7 +49,7 @@ $("document").ready(function() { </div> <div id="g-admin-g2-import-import"> <? if (isset($g2_version)): ?> - <ul class="enumeration"> + <ul> <li> <?= t("Gallery version %version detected", array("version" => $g2_version)) ?> </li> diff --git a/themes/admin_wind/css/screen.css b/themes/admin_wind/css/screen.css index c96c5753..177eb1e6 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,26 @@ a:hover, text-decoration: none; } +/* Lists ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ + +#g-content ul li { + list-style-type: disc; + margin-left: 1em; +} + +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; +} + + /* Forms ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ form { @@ -397,11 +420,6 @@ th { background-color: #fff; } -ul.enumeration li { - list-style-type: disc; - margin-left: 20px; -} - /*** ****************************************************************** * 3) Page layout containers *********************************************************************/ |