index.less 644 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import "~@less/variables.less";
  2. .box{
  3. margin: 2px 20px;
  4. word-break: break-word;
  5. .title{
  6. width: 65px;
  7. float: left;
  8. text-align: right;
  9. padding-right: 5px;
  10. margin-top: 10px;
  11. font-size: 14px;
  12. font-weight: bold;
  13. }
  14. .title:after{
  15. content: ":";
  16. }
  17. .content{
  18. // height:120px;
  19. min-height: 38px;
  20. margin:0 470px 0 60px;
  21. position: relative;
  22. padding:5px;
  23. outline: none;
  24. border-bottom:1px @part-border-color dashed;
  25. /*border-radius: 4px;*/
  26. }
  27. .border {
  28. border:1px @part-border-color dashed !important;
  29. border-radius: 4px;
  30. }
  31. .noBorder{
  32. border: none;
  33. }
  34. }