1234567891011121314151617181920212223242526272829303132 |
- @import "~@less/variables.less";
- .editable-span{
- display: inline-block;
- outline: none;
- word-break: break-all;
- min-width: 10px;
- // line-height: 2;
- min-height: 16px;//火狐需要
- line-height: 22px;
- vertical-align: unset;
- text-align: left;
- padding-right: 1px;//火狐左右移动需要
- font-weight: bold;
- }
- .editable-br{
- .editable-span;
- display: inline;
- }
- .editable-br:after{
- content: "\A";
- white-space: pre;
- }
- .full{
- width: 100%;
- line-height: 22px;
- }
- .unselect{
- color: @placeholder-color;
- }
- .ext{
- color: @extBlue;
- }
|