Advertisement
Guest User

Change Delete Button in Glide

a guest
May 27th, 2020
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <span/>
  2. <style>
  3. #push-modal-root button {
  4. font-size:0px;
  5. background-color:#FF004F;
  6. }
  7. #push-modal-root button:before {
  8. font-size:16px;
  9. content:"❌ Excluir Usuário";
  10. }
  11. #app-modal-root > div > div > div {
  12. font-size:0px;
  13. }
  14. #app-modal-root > div > div > div:nth-child(1):before {
  15. font-size:20px;
  16. content:"Atenção!";
  17. }
  18. #app-modal-root > div > div > div:nth-child(2):before {
  19. font-size:16px;
  20. content:"Deseja mesmo excluir esse usuário?";
  21. }
  22. #app-modal-root > div > div > div > div:nth-child(2) {
  23. font-size:0px;
  24. }
  25. #app-modal-root > div > div > div > div:nth-child(2):before {
  26. font-size:16px;
  27. content:"Sim, excluir!";
  28. }
  29. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement