common.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /deep/.el-tabs {
  2. height: 100%;
  3. width: 100%;
  4. padding: 0;
  5. .el-tabs__item {
  6. font-size: 0.072917rem;
  7. font-weight: 500;
  8. color: #fff;
  9. }
  10. .el-tabs__item.is-active {
  11. color: #0ea7ff;
  12. background: transparent;
  13. }
  14. .el-tabs__item:hover {
  15. color: #0ea7ff;
  16. }
  17. .el-tabs__content {
  18. height: calc(100% - 42px);
  19. color: #8eb2ce;
  20. }
  21. .el-tab-pane {
  22. height: 100%;
  23. width: 100%;
  24. }
  25. .el-tabs__nav-wrap::after {
  26. background-color: rgba(14, 167, 255, 0.2);
  27. }
  28. }
  29. /deep/ .el-tree {
  30. background: transparent;
  31. color: #8eb2ce;
  32. font-size: 0.083333rem;
  33. .el-tree-node>.el-tree-node__children {
  34. overflow: unset;
  35. background-color: transparent;
  36. }
  37. .el-tree-node__content {
  38. background-color: transparent;
  39. }
  40. .el-tree-node__content:hover {
  41. background-color: rgb(62, 70, 112);
  42. }
  43. .el-tree-node.is-current>.el-tree-node__content {
  44. background: rgba(22, 119, 255, 0.1);
  45. color: #4b95fe;
  46. /deep/ .el-tree-node__expand-icon {
  47. color: rgb(0, 112, 255);
  48. }
  49. /deep/ .is-leaf {
  50. color: rgba(0, 0, 0, 0);
  51. }
  52. }
  53. }