Changeset 595


Ignore:
Timestamp:
04/20/09 17:16:38 (3 years ago)
Author:
totoro
Message:

Improved 'compact' skin.

Location:
trunk/src/wymeditor/skins/compact
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wymeditor/skins/compact/skin.css

    r592 r595  
    2929 
    3030/*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; } 
    3232        .wym_skin_compact h2             { font-size: 110%; /* = 11px */} 
    3333        .wym_skin_compact h3             { font-size: 100%; /* = 10px */} 
     
    4545/*WYM_HTML*/ 
    4646        .wym_skin_compact .wym_html               { width: 98%;} 
    47         .wym_skin_compact .wym_html textarea      { width: 100%; 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; } 
    4848 
    4949 
  • trunk/src/wymeditor/skins/compact/skin.js

    r592 r595  
    44     
    55        //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) ) 
    99          .addClass("wym_dropdown") 
    1010          .css({"margin-right": "10px", "width": "120px", "float": "left"}); 
    1111 
    1212        //render following sections as buttons 
    13         jQuery(wym._box).find(wym._options.toolsSelector) 
     13        jQuery(wym._options.toolsSelector, wym._box) 
    1414          .addClass("wym_buttons") 
    1515          .css({"margin-right": "10px", "float": "left"}); 
    1616 
    1717        //make hover work under IE < 7 
    18         jQuery(wym._box).find(".wym_section").hover(function(){ 
     18        jQuery(".wym_section", wym._box).hover(function(){ 
    1919          jQuery(this).addClass("hover"); 
    2020        },function(){ 
Note: See TracChangeset for help on using the changeset viewer.