Changeset 67
- Timestamp:
- 04/05/06 11:48:08 (3 years ago)
- Files:
-
- trunk/framework/skins/wymstyle02/all.css (modified) (1 diff)
- trunk/framework/skins/wymstyle02/colors.css (modified) (1 diff)
- trunk/framework/skins/wymstyle02/layout.css (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/framework/skins/wymstyle02/all.css
r49 r67 18 18 19 19 /*DEPENDENCIES*/ 20 @import url(../../core/typo-reset.css);20 @import "../../core/typo-reset.css"; 21 21 22 22 /*SKIN FRAGMENTS*/ 23 @import url(layout.css); 24 @import url(borders.css); 25 @import url(colors.css); 26 27 /*IE DEBUG*/ 28 /* 29 * When we add borders, they are added INSIDE the block element 30 * in IE (they are not added to total width as they should). 31 * That reduces space for nested elements and breaks the layout. 32 * So we need to change 780px to 782px for IE. 33 */ 34 * html #content { width: 782px;} 23 @import "layout.css"; 24 @import "borders.css"; 25 @import "colors.css"; trunk/framework/skins/wymstyle02/colors.css
r56 r67 20 20 @import url(../../core/colors-branding.css); 21 21 22 /*COLORS*/ 22 /*COLORS*/ 23 23 html, 24 24 body, trunk/framework/skins/wymstyle02/layout.css
r36 r67 18 18 19 19 /*DEPENDENCIES*/ 20 @import url(../../core/layout-fixed.css);21 @import url(../../core/cols-3-nms.css);22 @import url(../../core/navpri-horizontal.css);23 @import url(../../core/navlang-topright.css);20 @import "../../core/layout-fixed.css"; 21 @import "../../core/cols-3-nms.css"; 22 @import "../../core/navpri-horizontal.css"; 23 @import "../../core/navlang-topright.css"; 24 24 25 25 /*UNDOS*/ … … 31 31 #header { margin-bottom: 50px;} 32 32 #content { padding-top: 20px; margin-bottom: 20px;} 33 #nav-pri { width: 550px; top: -35px; }33 #nav-pri { width: 550px; top: -35px; z-index: 1;} 34 34 #nav-pri li { width: 150px;} 35 35 #nav-pri a { width: 100%;} … … 37 37 #nav-lang { top: -52px;} 38 38 #nav-lang ul { right: 0; top: 0;} 39 40 /*IE DEBUG*/ 41 /* 42 * When we add borders, they are added INSIDE the block element 43 * in IE (they are not added to total width as they should). 44 * That reduces space for nested elements and breaks the layout. 45 * So we need to change 780px to 782px for IE. 46 */ 47 * html #content { width: 782px;}