Jump to content

Removing the File Icon from Files and Side bar display


Lordof themanor

Recommended Posts

Lordof themanor

Hey all :)

Just wondering if anyone knows how to remove the file icon from files and from the side pop out menu.

 

Thanks in advance :)

Link to comment
Share on other sites

chef

Do you mean these?

 

5e945da86529b_iconexample.png

 

 

 You'll have to target each icon using "configurationpage?name={NAME_OF_PLUG_IN_PAGE_OR_PAGE} "

a[href="configurationpage?name=TorrentPluginConfigurationPage"] i.md-icon.navMenuOptionIcon {
content: '' !important;
visibility: hidden;
}

 you can change the icon using this:



a[href="configurationpage?name=TorrentPluginConfigurationPage"] i.md-icon.navMenuOptionIcon:before {
content: 'import_export' !important;/*Name of the new icon to show*/
visibility: visible !important;
position: absolute !important;
}

if you want to get rid of them all just target "i.md-icon.navMenuOptionIcon"

i.md-icon.navMenuOptionIcon {
display:none;
}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...