diff options
author | chrisaga <chrisaga@piwigo.org> | 2005-10-20 19:06:17 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2005-10-20 19:06:17 +0000 |
commit | 56f29767a83b7f616962db2ffde2ae45f46ae831 (patch) | |
tree | 63b7c9eb566c65f80e22c33067d6eecc34aaf7ba /template/yoga/default-layout.css | |
parent | f223675e5d5936e2621229397fdfb045e44cf109 (diff) |
bug 176 fixed: need a javascript to handle transparent PNG background in IE
(tribute to Bob Osola http://homepage.ntlworld.com/bobosola/index.htm
display: fixed another IE childselector bug in Categories Management admin page
and improved display of this page in all browsers too.
git-svn-id: http://piwigo.org/svn/trunk@905 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/default-layout.css | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/template/yoga/default-layout.css b/template/yoga/default-layout.css index e3f2a65ff..bb8bb50eb 100644 --- a/template/yoga/default-layout.css +++ b/template/yoga/default-layout.css @@ -139,19 +139,23 @@ select.categoryList { } form#add_virtual p { text-align: left; } -form#categoryOrdering p { +FORM#categoryOrdering, FORM#addVirtual { + padding-left: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */ + padding-right: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */ +} +FORM#categoryOrdering p { text-align: left; margin-top: 1em; margin-bottom: 1em; } -form#categoryOrdering>ul { +UL.categoryUl { list-style: none; padding: 0; margin: 0; } -form#categoryOrdering>ul>li { - border: 1px solid grey; +LI.categoryLi { + border: 1px solid gray; padding: 0px 5px; margin-bottom: 5px; } |