16 lines
442 B
CSS
16 lines
442 B
CSS
|
|
/* Vendor Sales Report Menu - Remove icon */
|
||
|
|
.item-vendorsalesreport > a:before {
|
||
|
|
display: none !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Additional targeting for stubborn icons */
|
||
|
|
#menu-magento-reports-report .item-vendorsalesreport > a:before,
|
||
|
|
.admin__menu .item-vendorsalesreport > a:before {
|
||
|
|
content: none !important;
|
||
|
|
display: none !important;
|
||
|
|
width: 0 !important;
|
||
|
|
height: 0 !important;
|
||
|
|
margin: 0 !important;
|
||
|
|
padding: 0 !important;
|
||
|
|
}
|