.custom-tab{
|
position: absolute;
|
width: 400px;
|
height: 100%;
|
top: 0px;
|
right: 0px;
|
border: 1px solid #80808033;
|
background-color: white;
|
}
|
|
.custom-tab-title{
|
font-size: 0px;
|
background-color: rgb(248,248,248);
|
border-bottom-width: 1px;
|
border-bottom-style: solid;
|
border-bottom-color: #80808033;
|
margin-bottom: 0px;
|
}
|
|
.custom-tab-title li{
|
font-size: 13px;
|
display: inline-block;
|
padding: 0px 10px;
|
cursor: pointer;
|
height: 40px;
|
line-height: 40px;
|
position: relative;
|
margin-left: -1px;
|
}
|
|
.custom-tab-title li.active{
|
color: rgb(61, 144, 200);
|
background-color: white;
|
}
|
|
.custom-tab-title li.active::after{
|
position: absolute;
|
left: 0;
|
top: 0;
|
content: "";
|
width: 100%;
|
height: 41px;
|
border-width: 0px 1px 1px;
|
border-style: solid;
|
border-color: white #80808033;
|
}
|
|
.custom-tab-item{
|
display: none;
|
padding: 10px;
|
}
|
|
.custom-tab-item.active{
|
display: block;
|
}
|