index.less 515 B

12345678910111213141516171819202122
  1. @import "~ant-design-vue/lib/style/index";
  2. // The prefix to use on all css classes from ant-pro.
  3. @ant-pro-prefix : ant-pro;
  4. @ant-global-sider-zindex : 106;
  5. @ant-global-header-zindex : 105;
  6. .ant-input-disabled{
  7. color: #666;
  8. background-color: #f8f8f8;
  9. }
  10. .text-overflow{
  11. overflow: hidden;
  12. text-overflow:ellipsis;
  13. white-space: nowrap;
  14. }
  15. .text-overflows{
  16. display: -webkit-box;
  17. -webkit-box-orient: vertical;
  18. -webkit-line-clamp: 3;
  19. overflow: hidden;
  20. }