It is possible to change remove icon in Dynamic tabs?
I added custom icon with this css:
.bs-remove-tab:before {
content: "\f1f8"!important;
font-family: FontAwesome!important;
font-size: .7em!important;
padding-left: 5px!important;
color: inherit!important;
}
But how to remove old icon?
Try this. Hope it's help.
::ng-deep.bs-remove-tab {
visibility: hidden;
}
::ng-deep.bs-remove-tab:after {
content: "\f1f8";
font-family: FontAwesome;
font-size: .7em;
padding-left: 5px;
color: inherit;
position: absolute;
visibility: visible;
}
Most helpful comment
Try this. Hope it's help.