| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- .C2routing {
- :global {
- .sider {
- width: 100%;
- height: 100%;
- display: flex;
- .siderLeft {
- width: 350px;
- height: 100%;
- display: flex;
- }
- .siderRight {
- width: 0;
- flex: 1;
- height: 100%;
- }
- }
- .ant-table-cell {
- padding: 8px !important;
- }
- }
- }
- .C2siderLeftTree {
- width: 100%;
- margin-right: 20px;
- background-color: var(--boxBcaColor);
- border-radius: 10px;
- padding: 24px;
- padding-top: 15px;
- :global {
- .C2siderLeftTree1 {
- margin-bottom: 20px;
- }
- .C2siderLeftTree2 {
- height: calc(100% - 52px);
- overflow-y: auto;
- .site-tree-search-value {
- color: red;
- font-weight: 700;
- }
- .ant-tree {
- background-color: var(--boxBcaColor);
- min-height: 100%;
- }
- .ant-tree-title {
- font-size: 18px;
- }
- .ant-tree-title span {
- font-size: 18px;
- }
- .ant-tree-node-selected {
- padding: 4px 8px !important;
- background-color: var(--txtColor) !important;
- .ant-tree-title span {
- color: #fff !important;
- }
- }
- .NODATA {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- color: #666666;
- font-size: 16px;
- height: 100%;
- // img {
- // width: 150px;
- // }
- & > p {
- margin-bottom: 10px;
- }
- div {
- width: 80%;
- margin-top: 8%;
- display: flex;
- justify-content: space-around;
- }
- }
- }
- }
- }
|