12345678910111213141516171819202122 |
- @import "~ant-design-vue/lib/style/index";
- // The prefix to use on all css classes from ant-pro.
- @ant-pro-prefix : ant-pro;
- @ant-global-sider-zindex : 106;
- @ant-global-header-zindex : 105;
- .ant-input-disabled{
- color: #666;
- background-color: #f8f8f8;
- }
- .text-overflow{
- overflow: hidden;
- text-overflow:ellipsis;
- white-space: nowrap;
- }
- .text-overflows{
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 3;
- overflow: hidden;
- }
|