2007年12月11日火曜日

YUI CSS 2.4.0の変更箇所

YUI Library CSS Tools 2.4.0の、2.3.1から変更があった箇所の洗い出し。
影響がありそうなのは、テキストボックスのwidthくらいか。


reset.css

  • 全体の背景色とフォントカラーを指定する要素が、bodyからhtmlに変わった
    #2.3.1
    body{
     color:#000;
     background:#FFF;
    }
    #2.4.0
    html{
     color:#000;
     background:#FFF;
    }
  • sup、sub要素のline-height指定が無くなった
    #2.3.1
    sup,sub{
     line-height:-1px;
     vertical-align:text-top;
    }
    sub{
     vertical-align:text-bottom;
    }
    #2.4.0
    sup{
     vertical-align:text-top;
    }
    sub{
     vertical-align:text-bottom;
    }
  • legend要素の文字色を追加 (IEのみデフォルトが青色であることへの対処)
    legend{
     color:#000;
    }

base.css
  • pre要素のmargin-bottomの追加
    #2.3.1
    p,fieldset,table{
     margin-bottom:1em;
    }
    #2.4.0
    p,fieldset,table,pre{
     margin-bottom:1em;
    }
  • テキスト入力系要素の幅指定の追加
    input[type=text],input[type=password],textarea{
     width:12.25em;
     *width:11.9em;
    }

fonts.css
  • bodyのline-heightの拡大
    #2.3.1
    body {
     font:13px/1.22 arial,helvetica,clean,sans-serif;
     *font-size:small;
     *font:x-small;
    }
    #2.4.0
    body {
     font:13px/1.231 arial,helvetica,clean,sans-serif;
     *font-size:small;
     *font:x-small;
    }
  • monospace系要素のline-heightの微調整
    #2.3.1
    pre,code,kbd,samp,tt{
     font-family:monospace;
     *font-size:108%;
     line-height:99%;
    }
    #2.4.0
    pre,code,kbd,samp,tt{
     font-family:monospace;
     *font-size:108%;
     line-height:100%;
    }

grids.css
  • 変更無し

0 件のコメント:

ブログ アーカイブ

tags