mariordev / mailtoui

A simple way to enhance your mailto links with a convenient user interface.
https://mailtoui.com
MIT License
192 stars 12 forks source link

Option to disable the copy button? #30

Closed preetibenedict closed 3 years ago

preetibenedict commented 3 years ago

I am not sure if I am something trivial, but if I have a set of addresses in the mailTo list, the modal's size seems to be increasing to display all the addresses in the copy section. In my case, I have to send emails to quite a few addresses and was wondering if there was someway to disable the copy button (not display it) or not let the modal increase in size.

mariordev commented 3 years ago

You could hide the Copy field by adding this to your own CSS:

.mailtoui-copy { display:none; visibility:hidden; width:0; height:0; }

Hope this helps!

preetibenedict commented 3 years ago

Thanks.. That worked