通用评论

EditComment.css 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. .editCommetModal .ant-modal,
  2. .editCommetModal .ant-modal-content {
  3. width: 608px !important;
  4. height: 276px;
  5. }
  6. .editCommetModal .ant-modal-body {
  7. padding: 0;
  8. }
  9. .editCommetModal .title {
  10. font-size: 18px;
  11. color: #4a4a4a;
  12. padding: 20px 0 0 28px;
  13. }
  14. .editCommetModal .comment-editor {
  15. border: none;
  16. padding: 16px 24px;
  17. }
  18. .editCommetModal .comment-editor-toolbar {
  19. display: none;
  20. }
  21. .editCommetModal .comment-editor:hover,
  22. .editCommetModal .comment-editor:focus {
  23. border: none;
  24. outline: none;
  25. box-shadow: none;
  26. }
  27. .editCommetModal textarea.ant-input {
  28. border: 1px solid #e1e1e1;
  29. border-radius: 3px;
  30. resize: none;
  31. height: 132px !important;
  32. }
  33. .editCommetModal textarea.ant-input:hover {
  34. border: 1px solid #e1e1e1;
  35. border-radius: 3px;
  36. }
  37. .editCommetModal textarea.ant-input:hover,
  38. .editCommetModal textarea.ant-input:focus {
  39. border-color: #40a9ff;
  40. }
  41. .editCommetModal .comment-toolbar {
  42. display: flex;
  43. justify-content: flex-end;
  44. margin-top: 30px;
  45. }
  46. .editCommetModal .comment-toolbar-left {
  47. display: flex;
  48. align-items: center;
  49. height: 36px;
  50. margin: 0;
  51. }
  52. .editCommetModal .comment-toolbar-right {
  53. height: 36px;
  54. margin: 0;
  55. margin-left: 20px;
  56. }
  57. .editCommetModal .comment-toolbar-right .ant-btn {
  58. height: 36px;
  59. }
  60. .expression-btn-wrap,
  61. .picture-btn-wrap {
  62. float: left;
  63. cursor: pointer;
  64. }
  65. .expression-btn-wrap .icon,
  66. .picture-btn-wrap .icon {
  67. float: left;
  68. color: #ffa405;
  69. font-size: 24px !important;
  70. margin: 0 !important;
  71. }
  72. .expression-btn-wrap .icon-tool-text,
  73. .picture-btn-wrap .icon-tool-text {
  74. float: left;
  75. font-size: 16px;
  76. color: #393939;
  77. margin-left: 8px;
  78. }
  79. .picture-btn-wrap {
  80. margin-left: 28px;
  81. }
  82. .picture-btn-wrap .icon {
  83. color: rgba(113, 193, 53, 1);
  84. }
  85. @media (max-width: 575px) {
  86. .editCommetModal .ant-modal,
  87. .editCommetModal .ant-modal-content {
  88. width: 100% !important;
  89. height: 286px;
  90. }
  91. .editCommetModal .icon-tool-text {
  92. display: none;
  93. }
  94. .editCommetModal .picture-btn-wrap {
  95. margin-left: 18px;
  96. }
  97. }