Changeset 910


Ignore:
Timestamp:
Oct 22, 2005, 8:18:55 PM (19 years ago)
Author:
chrisaga
Message:

bug 177 fixed: icon tools wrong position in Safari and Konqueror

Needed a little trick to fix it. Put the trick in a fix-khtml.css
Loading in header.tpl and protected from IE, Geko and Opera,
just in case (couldn't foud a safari css-only filter wich validate)

bug fixed: issue in the FORM in remote_site.tpl which prevented

HTML validation (still something to do with the TABLE).

Location:
trunk
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/ChangeLog

    r909 r910  
     12005-10-22 chrisaga
     2
     3        * bug 177 fixed: icon tools wrong position in Safari and Konqueror
     4        Needed a little trick to fix it. Put the trick in a fix-khtml.css
     5        Loading in header.tpl and protected from IE, Geko and Opera,
     6        just in case (couldn't foud a safari css-only filter wich validate)
     7       
     8        * bug fixed: issue in the FORM in remote_site.tpl which prevented
     9        HTML validation (still something to do with the TABLE).
     10
    1112005-10-22 Pierrick LE GALL
    212
  • trunk/template/yoga/admin/remote_site.tpl

    r859 r910  
    6060
    6161<form action="{F_ACTION}" method="post">
    62   {L_REMOTE_SITE_CREATE}
    63   <input type="text" name="galleries_url" value="{F_GALLERIES_URL}" />
    64   <input type="submit" name="submit" value="{L_SUBMIT}" />
     62  <p>
     63    <label for="galleries_url" >{L_REMOTE_SITE_CREATE}</label>
     64    <input type="text" name="galleries_url" id="galleries_url" value="{F_GALLERIES_URL}" />
     65  </p>
     66  <p>
     67    <input type="submit" name="submit" value="{L_SUBMIT}" />
     68  </p>
    6569</form>
    6670
  • trunk/template/yoga/content.css

    r893 r910  
    121121ul.categoryActions {
    122122  text-align: center;
    123   margin: 1px 1px 0 0;
     123  margin: 0 0 0 0;
     124  width: auto;
    124125  padding: 0;
    125126  text-indent: 0;
     127  list-style: none;
    126128}
    127129
  • trunk/template/yoga/default-colors.css

    r859 r910  
    6666    border: 1px solid #d3d3d3;
    6767    background:#eeeeee;
    68 }
    69 
    70 #content H2 {
    71     text-align: left;
    7268}
    7369
  • trunk/template/yoga/header.tpl

    r905 r910  
    77<link rel="stylesheet" type="text/css" href="template/yoga/default-layout.css">
    88<link rel="stylesheet" type="text/css" href="template/yoga/default-colors.css">
     9<!-- the next css is used to fix khtml (Konqueror/Safari) issue
     10the "extra-keyword" and "text/nonsense" prevent other browsers to load it -->
     11<link rel="extra-keyword stylesheet" type="text/nonsense" href="template/yoga/fix-khtml.css">
    912<link rel="stylesheet" type="text/css" media="print" href="template/yoga/print.css">
    1013<!-- AN OTHER FIX ME -->
Note: See TracChangeset for help on using the changeset viewer.