1234567891011121314151617181920 |
- @import "~@less/variables.less";
- .editable-span{
- display: inline-block;
- outline: none;
- word-break: break-word;
- min-width: 10px;
- // line-height: 2;
- min-height: 16px;//火狐需要
- line-height: 16px;
- vertical-align: middle;
- text-align: left;
- padding-right: 1px;//火狐左右移动需要
- }
- .full{
- width: 100%;
- line-height: 100%;
- }
- .unselect{
- color: @placeholder-color;
- }
|