123456789101112131415161718192021222324252627282930313233343536 |
- @import "~@less/variables.less";
- .box{
- margin: 2px 20px;
- word-break: break-all;
- word-break: break-word;
- .title{
- width: 65px;
- float: left;
- text-align: right;
- padding-right: 5px;
- margin-top: 10px;
- font-size: 14px;
- font-weight: bold;
- }
- .title:after{
- content: ":";
- }
- .content{
- // height:120px;
- min-height: 38px;
- margin-left: 60px;
- position: relative;
- padding:5px;
- outline: none;
- border-bottom:1px @part-border-color dashed;
- /*border-radius: 4px;*/
- }
- .border {
- border:1px @part-border-color dashed !important;
- border-radius: 4px;
- }
- .noBorder{
- border: none;
- }
- }
|