TeamDesk Knowledge Base & Support

   Home      FAQ      Forum      Idea Exchange      Ask a Question      My Stuff      Help   
  
SEND to replace SAVE for Email Workflow Button
Please consider replacing the text on the SAVE button to SEND for E-mail workflow actions
ID
1191
Category
User Experience
Author

basenine
Date Created
4/23/2018 5:11:32 PM
Date Updated
4/23/2018 7:34:19 PM
Status
New Idea
Score
40
Promoted By
Patricio BustosPhilipp (JFDI/Teamdesk)Dave Ah Ching
basenine
Comments
Cooper Collier 4/23/2018 7:07:11 PM
This is a good idea.
I think it can be easily done with some CSS. This is not exact, you need to changed the alignment a bit.
But it does hide the original text and place whatever you like in its place

<style>
div.fs-layoutaction:nth-child(2) > button:nth-child(1)
{ position:relative }

div.fs-layoutaction:nth-child(2) > button:nth-child(1):after
{content: "Send";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: grey;
color:black}
</style>
basenine 4/23/2018 7:34:19 PM
Thank you Cooper 😀
I ended up trying something similar in the dbstyles.css file:

.ui-button[value="save"]:after{
content: "/Send";
}

Shows "SAVE/SEND" on the button...
Both our versions of css, however replaces all SAVE buttons with this text ("SAVE/SEND") as they are universal buttons rather than one specifically for Email Workflows

We need to either drill down to a unique Id on that particular button, or have TD allow the Workflow action to be re-named (easier)

Thanks again
Feedback
 
Back to Search Results