common.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .w100 {
  2. width: 100%;
  3. }
  4. // 页头
  5. .ele-body {
  6. .page-title {
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. border-bottom: 1px solid #eaeefb;
  11. padding-bottom: 8px;
  12. margin-bottom: 16px;
  13. }
  14. }
  15. // ele-split-layout 左侧盒子充满
  16. .split-layout-right-content {
  17. position: absolute;
  18. top: 0;
  19. bottom: 0;
  20. left: 0;
  21. right: 0;
  22. box-sizing: border-box;
  23. border-width: 1px;
  24. border-style: solid;
  25. overflow: auto;
  26. }
  27. // tab切换框
  28. .switch {
  29. display: flex;
  30. justify-content: space-between;
  31. }
  32. .switch_left ul {
  33. list-style-type: none;
  34. display: flex;
  35. padding: 0;
  36. margin: 0;
  37. }
  38. .switch_left ul li {
  39. min-width: 80px;
  40. padding: 0 10px;
  41. text-align: center;
  42. background: #dfdfdf;
  43. color: #333;
  44. font-size: 14px;
  45. height: 36px;
  46. line-height: 32px;
  47. margin-right: 5px;
  48. border-top: 4px solid #dfdfdf;
  49. cursor: pointer;
  50. }
  51. .switch_left ul .active {
  52. background: #fff;
  53. border-top: 4px solid #157a2c;
  54. color: #157a2c;
  55. }
  56. // 步骤条边线显示
  57. .el-step__head.is-process .el-step__icon.is-text{
  58. border: none!important;
  59. background: none!important;
  60. }
  61. // .el-step.is-vertical .el-step__line{
  62. // left: 10px;
  63. // }
  64. .repair_infoLogs .el-step:last-of-type .el-step__line{
  65. display: block!important;
  66. width: 3px!important;
  67. }
  68. .repair_infoLogs .el-steps:last-child .el-step__line{
  69. display: none!important;
  70. }