Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/34.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
使用jquery布局更改边框和光标_Jquery_Css_Jquery Layout - Fatal编程技术网

使用jquery布局更改边框和光标

使用jquery布局更改边框和光标,jquery,css,jquery-layout,Jquery,Css,Jquery Layout,我试着做两件事 1) 删除截面之间的边界(当前为灰色区域) 2) 删除光标周围的区域(您应该只看到“”而不是光标周围的暗区域 这是我目前的代码 在css中添加以下内容: body > div { border: 0 solid white !important; } .ui-layout-toggler { background-color: transparent !important; } 第一个覆盖边界定义,第二个将切换的背景色设置为透明 另请参见更新的 ==更新

我试着做两件事

1) 删除截面之间的边界(当前为灰色区域)

2) 删除光标周围的区域(您应该只看到“”而不是光标周围的暗区域

这是我目前的代码


在css中添加以下内容:

body > div {
    border: 0 solid white !important;
}

.ui-layout-toggler {
    background-color: transparent !important;
}
第一个覆盖边界定义,第二个将切换的背景色设置为透明

另请参见更新的

==更新===

另一种方法是通过jquery设置它们:

$('body > div').css({
    border: '0 solid white'
});

$('.ui-layout-toggler').css({
    'background-color': 'transparent'
});
还要看下

或更短:

$('body > div').css('border', '0 solid white');
$('.ui-layout-toggler').css('background-color', 'transparent');
还要看下

==更新===

你是说这个吗

$('.ui-layout-resizer-west').css('background-color', 'transparent');
还要看下

或者使用css

.ui-layout-resizer-west {
    background-color: transparent !important;
}

另请参见下一页。

在css中添加以下内容:

body > div {
    border: 0 solid white !important;
}

.ui-layout-toggler {
    background-color: transparent !important;
}
第一个覆盖边界定义,第二个将切换的背景色设置为透明

另请参见更新的

==更新===

另一种方法是通过jquery设置它们:

$('body > div').css({
    border: '0 solid white'
});

$('.ui-layout-toggler').css({
    'background-color': 'transparent'
});
还要看下

或更短:

$('body > div').css('border', '0 solid white');
$('.ui-layout-toggler').css('background-color', 'transparent');
还要看下

==更新===

你是说这个吗

$('.ui-layout-resizer-west').css('background-color', 'transparent');
还要看下

或者使用css

.ui-layout-resizer-west {
    background-color: transparent !important;
}

另请参见下一页。

唯一仍然存在的是西边的边界(切换光标所在的位置)。唯一仍然存在的是西边的边界(切换光标所在的位置)。