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

我猜 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 回答
0

句柄实际上是 gif 图像。您需要为每个分隔条编辑 gif。例如 extjs4/resources/themes/images/default/sizer/s-handle.gif 是一个。

于 2012-11-05T23:27:37.583 回答