12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .modal {
- width: 900px;
- :global {
- .ant-modal-body {
- padding: 19px;
- }
- .ant-modal-header {
- padding: 12px 24px;
- background: #f7f7f7;
- .ant-modal-title {
- font-size: 12px;
- }
- }
- .ant-modal-close-x {
- font-size: 12px;
- }
- }
- }
- .treeSider {
- background-color: white;
- border-right: 1px solid #eee;
- padding-right: 10px;
- input {
- border-radius: 0;
- }
- }
- .table {
- .goodsName {
- width: 240px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .productName {
- width: 110px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- :global {
- .ant-table {
- font-size: 12px;
- .ant-table-thead > tr > th {
- background-color: white;
- border-bottom: 1px solid black;
- padding-bottom: 5px;
- }
- }
- }
- }
- .search {
- margin-bottom: 8px;
- width: 280px;
- height: 30px;
- > input {
- border-radius: 0;
- }
- }
|