我正在尝试做两件事
1)去除部分之间的边界(目前灰色区域)
2)删除光标周围的区域(你应该只看到'<'或'>'而不是它周围的黑暗区域
这是我当前的代码
我正在尝试做两件事
1)去除部分之间的边界(目前灰色区域)
2)删除光标周围的区域(你应该只看到'<'或'>'而不是它周围的黑暗区域
这是我当前的代码
将以下内容添加到您的 CSS 中:
body > div {
border: 0 solid white !important;
}
.ui-layout-toggler {
background-color: transparent !important;
}
第一个覆盖边框定义,第二个将切换的背景颜色设置为透明。
另请参阅更新的jsfiddle。
=== 更新 ===
另一种方法是通过 jquery 设置它们:
$('body > div').css({
border: '0 solid white'
});
$('.ui-layout-toggler').css({
'background-color': 'transparent'
});
另请参阅下一个jsfiddle。
或更短:
$('body > div').css('border', '0 solid white');
$('.ui-layout-toggler').css('background-color', 'transparent');
另请参阅下一个jsfiddle。
=== 更新 ===
你是这个意思吗?
$('.ui-layout-resizer-west').css('background-color', 'transparent');
另请参阅下一个jsfiddle。
或者用 css
.ui-layout-resizer-west {
background-color: transparent !important;
}
另请参阅下一个jsfiddle。