0

Extjs のサイズ変更可能なハンドル、特にポップアップ ウィンドウ用のハンドルの現在の CSS クラスに置き換えようとしています。私はそれの色を変えようとしていますが、うまくいかないようです。ここに私のcssコードがあります

.linkWindow .x-toolbar-footer, 
.x-resizable-handle, .x-resizable-handle-west, .x-resizable-handle-east, .x-resizable- handle-south, .x-resizable-handle-over .x-resizable-handle-east, .x-resizable-handle-over .x-resizable-handle-west, .x-resizable-proxy, .x-resizable-overlay

{

    color: #045BB3;
    background-color: #045BB3;
    background: #045BB3;
    border-color: #045BB3;


}

もうどうしたらいいのかわからない。どんな助けでも大歓迎です!!

また、私はIE 7用に開発していることにも注意してください

4

2 に答える 2

0

The handles are actually gif images. You'd need to edit the gifs for each piece of the splitter bar. For instance extjs4/resources/themes/images/default/sizer/s-handle.gif is one.

于 2012-11-05T23:27:37.583 に答える
0

Extjs css があなた自身のものを上書きしていると思います。!important次のようにプロパティの最後に追加してみてください。

.linkWindow .x-toolbar-footer, 
.x-resizable-handle, .x-resizable-handle-west, .x-resizable-handle-east, .x-resizable- handle-south, .x-resizable-handle-over .x-resizable-handle-east, .x-resizable-handle-over .x-resizable-handle-west, .x-resizable-proxy, .x-resizable-overlay

{

    color: #045BB3 !important;
    background: #045BB3 !important;
    border-color: #045BB3 !important;


}
于 2012-10-12T16:28:21.437 に答える