2012-10-12 22 views
0

我一直在嘗試替換爲Extjs中可調整大小的句柄的當前CSS類,特別是用於彈出窗口的。我試圖改變它的顏色,它似乎沒有工作。這裏是我的css代碼Extjs可調節手柄顏色變化?

.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

回答

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; 


} 
+0

剛剛嘗試過,沒有運氣:( – user1436497

0

手柄實際上是GIF圖像。您需要編輯每個分隔條的gif。例如extjs4/resources/themes/images/default/sizer/s-handle.gif就是其中之一。