Changeset 905


Ignore:
Timestamp:
Oct 20, 2005, 9:06:17 PM (19 years ago)
Author:
chrisaga
Message:

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.

Location:
trunk
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/ChangeLog

    r903 r905  
     12005-10-20 chrisaga
     2
     3        * bug 176 fixed: need a javascript to handle transparent PNG background in IE
     4        (tribute to Bob Osola http://homepage.ntlworld.com/bobosola/index.htm
     5
     6        * display: fixed another IE childselector bug in Categories Management admin page
     7        and improved display of this page in all browsers too.
     8
    192005-10-18 Pierrick LE GALL
    210
  • trunk/template/yoga/admin/cat_list.tpl

    r860 r905  
    66<form id="categoryOrdering" action="" method="post">
    77
    8   <ul>
     8  <ul class="categoryUl">
    99
    1010    <!-- BEGIN category -->
    11     <li> <!-- category {category.ID} -->
     11    <li class="categoryLi"> <!-- category {category.ID} -->
    1212
    1313      <ul class="categoryActions">
     
    3838    <!-- END category -->
    3939
     40  </ul>
    4041  <p><input name="submitOrder" type="submit" value="{lang:Save order}" /></p>
    4142
    4243</form>
    4344
    44 <form action="{F_ACTION}" method="post">
     45<form id="addVirtual" action="{F_ACTION}" method="post">
    4546  {L_ADD_VIRTUAL} : <input type="text" name="virtual_name" />
    4647  <input type="hidden" name="rank" value="{NEXT_RANK}"/>
  • trunk/template/yoga/default-layout.css

    r899 r905  
    140140
    141141form#add_virtual p { text-align: left; }
    142 form#categoryOrdering p {
     142FORM#categoryOrdering, FORM#addVirtual {
     143  padding-left: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
     144  padding-right: 1em; /* same as FIELDSET margin (there is no fieldset in this form) */
     145}
     146FORM#categoryOrdering p {
    143147        text-align: left;
    144148        margin-top: 1em;
    145149        margin-bottom: 1em;
    146150}
    147 form#categoryOrdering>ul {
     151UL.categoryUl {
    148152  list-style: none;
    149153  padding: 0;
     
    151155}
    152156
    153 form#categoryOrdering>ul>li {
    154   border: 1px solid grey;
     157LI.categoryLi {
     158  border: 1px solid gray;
    155159  padding: 0px 5px;
    156160  margin-bottom: 5px;
  • trunk/template/yoga/header.tpl

    r859 r905  
    2020<title>{PAGE_TITLE}</title>
    2121<script type="text/javascript" src="include/scripts.js"></script>
     22<!--[if gte IE 5.5000]>
     23<script type="text/javascript" src="include/pngfix.js"></script>
     24<![endif]-->
    2225</head>
    2326
Note: See TracChangeset for help on using the changeset viewer.