index.less 532 B

12345678910111213141516171819202122232425262728293031
  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: middle;
  11. text-align: left;
  12. padding-right: 1px;//火狐左右移动需要
  13. }
  14. .editable-br{
  15. .editable-span;
  16. display: inline;
  17. }
  18. .editable-br:after{
  19. content: "\A";
  20. white-space: pre;
  21. }
  22. .full{
  23. width: 100%;
  24. line-height: 22px;
  25. }
  26. .unselect{
  27. color: @placeholder-color;
  28. }
  29. .ext{
  30. color: @extBlue;
  31. }