Changeset 1513


Ignore:
Timestamp:
Jul 29, 2006, 10:18:23 AM (18 years ago)
Author:
chrisaga
Message:

fix bug 490 (better fix) no absolute sizes for input fields, but they are shorter in IE

Location:
trunk/template/yoga
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/template/yoga/fix-ie5-ie6.css

    r1506 r1513  
    99}
    1010#content {
    11   height: 1em; /* for IE6 it's like min-height */
     11  height: 1em;  /* for IE6 it's like min-height */
    1212}
    1313
     
    1919/* fix category thumbnails on main page */
    2020#content UL.thumbnailCategories {
    21   width: 99%; /* buggy IE box model */
     21  width: 99%;   /* buggy IE box model */
    2222}
    2323
     
    2929
    3030/* fix quickconnect layout */
    31 FORM#quickconnect UL.actions {
    32   width: 30px;  /* <= get icons not so badly positionned */
     31FORM#quickconnect FIELDSET {
     32  width: 99%;   /* correct an ugly 1 or 2 px misalignement with IE */
    3333}
    34 
    35 FORM#quickconnect INPUT.text,
    36 FORM#quickconnect INPUT.password,
    37 FORM#quickconnect INPUT.submit {
    38   position: relative;
    39   left: -0.5em; /* definitively a bug ! */
    40 }
    41 
    42 FORM#quickconnect INPUT.text,
    43 FORM#quickconnect INPUT.password {
    44   width: 10em;
    45 }
    46 
    47 
  • trunk/template/yoga/menubar.css

    r1506 r1513  
    5353    width: 90%;
    5454}
    55 #menubar FORM P {
    56     margin: 5px;
    57     font-size: 100%;
    58 }
    5955#menubar INPUT {
    6056    text-indent: 2px;
     
    7066  margin: 0;
    7167  padding: 0 0 0.5em 0;
    72   overflow: hidden;     /* Correct float issue with Opera 7.5 */
    73   width: 100%;          /*        //                          */
    7468}
    7569
    7670FORM#quickconnect P {
     71  margin-left: 0;
     72  font-size: 100%;
    7773  float: left;
    7874  clear: left;
     
    9490
    9591FORM#quickconnect UL.actions,
    96 FORM#quickconnect P, 
     92FORM#quickconnect P,
    9793FORM#quickconnect LABEL {
    98   margin: 0 0.5em 0 0.5em;
     94  padding: 0 0.5em 0 0.5em;
     95}
     96
     97FORM#quickconnect LABEL {
     98  margin:0;
     99  width: 100%;
     100 /* -moz-box-sizing: padding-box;*/
     101  box-sizing: border-box;
     102  -moz-box-sizing: border-box;
    99103}
    100104
    101105FORM#quickconnect INPUT[type=text],
    102106FORM#quickconnect INPUT[type=password] {
    103   width: 16.5em;
     107  width: 100%;  /* mozilla can handle 100% */
    104108}
    105 
    106 FORM#quickconnect INPUT.text,
     109/* same as above for IE with inputfix.htc              */
     110/* unfortunately IE doesn't handle that correctly      */
     111/* so you should set a width in em in local_layout.css */
     112/*FORM#quickconnect INPUT.text,
    107113FORM#quickconnect INPUT.password {
    108   width: 16.5em;                /* <= same as above for IE with inputfix.htc */
    109 }
     114  width: 95%;
     115}*/
    110116
    111117#menubar #menuTagCloud {
Note: See TracChangeset for help on using the changeset viewer.