EasyUI Forum

General Category => Bug Report => Topic started by: Stefan B. on June 23, 2014, 02:59:29 AM



Title: if tabs border is set to false the tools border of the tabs is shown [not a bug]
Post by: Stefan B. on June 23, 2014, 02:59:29 AM
If border of the tab is set to false, the tools border of the easyui tab is shown and cannot set to false.

Code:
$('#tab1').tabs({
    border: false,
    toolPosition: 'right',
    tools: '#datacollectionInfrastructureTabTools'

The tools boarder should also set to false if the tabs border is false



Title: Re: if the tabs border is set to false the tools border of the tabs is shown
Post by: stworthy on June 23, 2014, 07:19:15 AM
It is no the bug, the tool area has a border to separate from other components. If you want, you can add the code below to hide the tool border.
Code:
<style type="text/css">
.tabs-header-noborder .tabs-tool{
  border-width: 0 0 1px 0;
}
</style>


Title: Re: if the tabs border is set to false the tools border of the tabs is shown
Post by: Stefan B. on June 23, 2014, 11:31:42 PM
THX. That's working