xanthics / gw2craft

Driving force behind gw2crafts
http://gw2crafts.net
MIT License
68 stars 16 forks source link

Suggestion: auto copy with 1 click #46

Closed SullieLore closed 4 years ago

SullieLore commented 4 years ago

Hello!

I use this guide weekly: https://gw2crafts.net/cooking_karma_fast_200.html

Very helpful. However, it would be improved if there was an auto copy function after each ingredient. This would allow quicker copy and paste into the trading post/recipe list in-game.

Sullie

xanthics commented 4 years ago

Added the following class and css style. It's not quite 1 click, but it makes selecting text a lot easier.

    .select_text {
    -webkit-user-select: all; /* Safari */
    -ms-user-select: all; /* IE 10+ and Edge */
    -moz-user-select: all; /* Firefox */
    user-select: all; /* Standard syntax */
    cursor: pointer;}
SullieLore commented 4 years ago

Very nice. Thanks for the quick action!