index.less 552 B

1234567891011121314151617181920212223242526272829303132
  1. @import "~@less/variables.less";
  2. .editable-span{
  3. display: inline-block;
  4. outline: none;
  5. word-break: break-all;
  6. min-width: 10px;
  7. // line-height: 2;
  8. min-height: 16px;//火狐需要
  9. line-height: 22px;
  10. vertical-align: unset;
  11. text-align: left;
  12. padding-right: 1px;//火狐左右移动需要
  13. font-weight: bold;
  14. }
  15. .editable-br{
  16. .editable-span;
  17. display: inline;
  18. }
  19. .editable-br:after{
  20. content: "\A";
  21. white-space: pre;
  22. }
  23. .full{
  24. width: 100%;
  25. line-height: 22px;
  26. }
  27. .unselect{
  28. color: @placeholder-color;
  29. }
  30. .ext{
  31. color: @extBlue;
  32. }