fce1388a3c4108d1721fa2986ca3342d00e902379f13e290ce30683ece7aed05aa800f12e09680b3e9dfa7496821e5c9964cbf274817c322f60daa717bf70d 885 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .htCommentCell {
  2. position: relative;
  3. }
  4. .htCommentCell:after {
  5. content: '';
  6. position: absolute;
  7. top: 0;
  8. right: 0;
  9. border-left: 6px solid transparent;
  10. border-top: 6px solid black;
  11. }
  12. .htComments {
  13. display: none;
  14. z-index: 1059;
  15. position: absolute;
  16. }
  17. .htCommentTextArea {
  18. box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px;
  19. -webkit-box-sizing: border-box;
  20. -moz-box-sizing: border-box;
  21. box-sizing: border-box;
  22. border: none;
  23. border-left: 3px solid #ccc;
  24. background-color: #fff;
  25. width: 215px;
  26. height: 90px;
  27. font-size: 12px;
  28. padding: 5px;
  29. outline: 0px !important;
  30. -webkit-appearance: none;
  31. }
  32. .htCommentTextArea:focus {
  33. box-shadow: rgba(0, 0, 0, 0.117647) 0 1px 3px, rgba(0, 0, 0, 0.239216) 0 1px 2px, inset 0 0 0 1px #5292f7;
  34. border-left: 3px solid #5292f7;
  35. }