Changeset 595
- Timestamp:
- 04/20/09 17:16:38 (3 years ago)
- Location:
- trunk/src/wymeditor/skins/compact
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wymeditor/skins/compact/skin.css
r592 r595 29 29 30 30 /*TYPO*/ 31 .wym_skin_compact { font-size: 62.5%; font-family: Verdana, Arial, sans-serif; }31 .wym_skin_compact { font-size: 10px; font-family: Verdana, Arial, sans-serif; } 32 32 .wym_skin_compact h2 { font-size: 110%; /* = 11px */} 33 33 .wym_skin_compact h3 { font-size: 100%; /* = 10px */} … … 45 45 /*WYM_HTML*/ 46 46 .wym_skin_compact .wym_html { width: 98%;} 47 .wym_skin_compact .wym_html textarea { width: 1 00%; height: 200px; border: 1px solid gray; background: white;}47 .wym_skin_compact .wym_html textarea { width: 120%; height: 200px; border: 1px solid gray; background: white; } 48 48 49 49 -
trunk/src/wymeditor/skins/compact/skin.js
r592 r595 4 4 5 5 //move the containers panel to the top area 6 jQuery(wym._ box).find(wym._options.containersSelector + ', '7 + wym._options.classesSelector )8 .appendTo( "div.wym_area_top")6 jQuery(wym._options.containersSelector + ', ' 7 + wym._options.classesSelector, wym._box) 8 .appendTo( jQuery("div.wym_area_top", wym._box) ) 9 9 .addClass("wym_dropdown") 10 10 .css({"margin-right": "10px", "width": "120px", "float": "left"}); 11 11 12 12 //render following sections as buttons 13 jQuery(wym._ box).find(wym._options.toolsSelector)13 jQuery(wym._options.toolsSelector, wym._box) 14 14 .addClass("wym_buttons") 15 15 .css({"margin-right": "10px", "float": "left"}); 16 16 17 17 //make hover work under IE < 7 18 jQuery( wym._box).find(".wym_section").hover(function(){18 jQuery(".wym_section", wym._box).hover(function(){ 19 19 jQuery(this).addClass("hover"); 20 20 },function(){
Note: See TracChangeset
for help on using the changeset viewer.