123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- .KCIMLeftList {
- border-radius: 4px;
- padding:8px 8px;
- width: 100%;
- // padding-top: 16px;
- // border: 1px solid #DAE2F2;
- .toolbar {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- padding: 0 8px;
-
- .add {
- cursor: pointer;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 24px;
- height: 24px;
- background: #FAFCFF;
- border-radius: 4px;
- border: 1px solid #DAE2F2;
-
- &>img {
- width: 16px;
- height: 16px;
- }
- }
- }
-
- .wrap {
- margin-top: 12px;
- padding-right: 0;
- .cost-ant-tree.cost-ant-tree-directory .cost-ant-tree-treenode-selected:hover::before,
- .cost-ant-tree.cost-ant-tree-directory .cost-ant-tree-treenode-selected::before {
- border-radius: 4px;
- background: rgb(240 242 245 / 100%);
- }
- .bms-ant-tree.bms-ant-tree-directory .bms-ant-tree-treenode .bms-ant-tree-node-content-wrapper.bms-ant-tree-node-selected {
- font-weight: bold;
- }
- .DirectoryTree {
- // .cost-ant-tree-treenode-selected {
- // .cost-ant-tree-title {
- // color:#17181A !important;
- // font-weight: 500 !important;
- // }
- // }
-
- }
- .cost-ant-tree.cost-ant-tree-directory .cost-ant-tree-treenode .cost-ant-tree-node-content-wrapper.cost-ant-tree-node-selected {
- color:#17181A !important;
- font-weight: 500 !important;
- }
-
- .list {
- cursor: pointer;
- height: 48px;
- border-radius: 4px;
- background: #FFFFFF;
- display: flex;
- padding-left: 8px;
- padding-right: 8px;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 4px;
-
- .icon {
- width: 25px;
- height: 25px;
- }
-
- .content {
- width: 87%;
- padding-left: 7px;
-
- .name {
- height: 15px;
- font-size: 14px;
- font-family: SourceHanSansCN-Medium, SourceHanSansCN;
- font-weight: 500;
- color: #17181A;
- line-height: 15px;
- margin-bottom: 4px;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
-
- .sub {
- height: 13px;
- font-size: 12px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #7A8599;
- line-height: 13px;
- }
- }
-
- .more {
- display: flex;
- justify-content: center;
- align-items: center;
- cursor: pointer;
- width: 16px;
- height: 16px;
- border-radius: 4px;
- background: #FFFFFF;
-
- &>img {
- width: 100%;
- height: 100%;
- }
- }
-
- &.on {
- font-weight: 500;
- color: #17181A;
- background: #F0F2F5;
- }
-
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- }
|