diff options
author | plegall <plg@piwigo.org> | 2005-09-26 21:17:17 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-09-26 21:17:17 +0000 |
commit | b7b05eafc360c258d0d711625051ad10a840613b (patch) | |
tree | f3380e93a9c8032015d29d2bd83edba648a4d787 /template | |
parent | e624f27b5fb8c8dffc2bb9f2db8638799bb5f1f8 (diff) |
- bug 158 fixed: display error on "double selects" screens (with MSIE,
strange behavior). VDigital modification optimizes width usage :-)
git-svn-id: http://piwigo.org/svn/trunk@878 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/default-layout.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/template/yoga/default-layout.css b/template/yoga/default-layout.css index 7f1a856ec..d4f4f19dc 100644 --- a/template/yoga/default-layout.css +++ b/template/yoga/default-layout.css @@ -122,7 +122,7 @@ textarea.description { overflow: auto; } select.categoryList { - width: 400px; + width: 100%; } /** go to an admin.css ? **/ @@ -233,10 +233,12 @@ FIELDSET.elementEdit A { TABLE.doubleSelect { text-align: center; margin: 0 auto; + width: 100%; } TABLE.doubleSelect TD { padding: 0 5px; + width: 50%; } FORM#categoryPermissions LI { @@ -264,4 +266,3 @@ BODY#thePopuphelpPage #copyright { color: green; display: none; } - |