HTMLEditor.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .sg-editing-superuser-textarea {
  2. width: 100%;
  3. height: 100%;
  4. border: none;
  5. padding: 15px;
  6. -moz-box-sizing: border-box;
  7. -webkit-box-sizing: border-box;
  8. box-sizing: border-box;
  9. resize: none;
  10. background-color: #fff;
  11. font-family: 'Courier New', Arial;
  12. color: #000000;
  13. font-size: 13px;
  14. }
  15. .sg-editing-superuser-modal-container {
  16. position: absolute;
  17. bottom: -38px;
  18. right: 0px;
  19. width: 60px;
  20. height: 30px;
  21. padding: 4px;
  22. background-color: rgb(255, 41, 61);
  23. }
  24. .sg-editing-superuser-modal-container:before {
  25. content: '';
  26. position: absolute;
  27. z-index: -1;
  28. top: 0;
  29. left: 0;
  30. width: 68px;
  31. height: 38px;
  32. -moz-box-shadow: 0 0 2px 3px #555;
  33. -webkit-box-shadow: 0 0 2px 3px #555;
  34. box-shadow: 0 0 2px 3px #555;
  35. }
  36. .sg-editing-superuser-modal-container button {
  37. display: inline-block;
  38. width: 30px;
  39. height: 30px;
  40. border: none;
  41. outline: none;
  42. background-color: rgb(255, 41, 61);
  43. background-repeat: no-repeat;
  44. background-size: 30px auto;
  45. background-position: center;
  46. }
  47. .sg-editing-superuser-modal-container button:hover {
  48. background-color: rgb(183, 12, 29);
  49. cursor: pointer;
  50. }
  51. .sg-editing-superuser-modal-container button.confirm {
  52. background-image: url(./icons/copy.svg);
  53. }
  54. .sg-editing-superuser-modal-container button.cancel {
  55. background-image: url(./icons/copy.svg);
  56. }