- Timestamp:
- Jul 29, 2006, 10:18:23 AM (18 years ago)
- Location:
- trunk/template/yoga
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/template/yoga/fix-ie5-ie6.css
r1506 r1513 9 9 } 10 10 #content { 11 height: 1em; 11 height: 1em; /* for IE6 it's like min-height */ 12 12 } 13 13 … … 19 19 /* fix category thumbnails on main page */ 20 20 #content UL.thumbnailCategories { 21 width: 99%; 21 width: 99%; /* buggy IE box model */ 22 22 } 23 23 … … 29 29 30 30 /* fix quickconnect layout */ 31 FORM#quickconnect UL.actions{32 width: 30px; /* <= get icons not so badly positionned*/31 FORM#quickconnect FIELDSET { 32 width: 99%; /* correct an ugly 1 or 2 px misalignement with IE */ 33 33 } 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 53 53 width: 90%; 54 54 } 55 #menubar FORM P {56 margin: 5px;57 font-size: 100%;58 }59 55 #menubar INPUT { 60 56 text-indent: 2px; … … 70 66 margin: 0; 71 67 padding: 0 0 0.5em 0; 72 overflow: hidden; /* Correct float issue with Opera 7.5 */73 width: 100%; /* // */74 68 } 75 69 76 70 FORM#quickconnect P { 71 margin-left: 0; 72 font-size: 100%; 77 73 float: left; 78 74 clear: left; … … 94 90 95 91 FORM#quickconnect UL.actions, 96 FORM#quickconnect P, 92 FORM#quickconnect P, 97 93 FORM#quickconnect LABEL { 98 margin: 0 0.5em 0 0.5em; 94 padding: 0 0.5em 0 0.5em; 95 } 96 97 FORM#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; 99 103 } 100 104 101 105 FORM#quickconnect INPUT[type=text], 102 106 FORM#quickconnect INPUT[type=password] { 103 width: 1 6.5em;107 width: 100%; /* mozilla can handle 100% */ 104 108 } 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, 107 113 FORM#quickconnect INPUT.password { 108 width: 16.5em; /* <= same as above for IE with inputfix.htc */109 } 114 width: 95%; 115 }*/ 110 116 111 117 #menubar #menuTagCloud {
Note: See TracChangeset
for help on using the changeset viewer.