index.less 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. .cip-cron__container {
  2. display: flex;
  3. flex-direction: column;
  4. .cip-cron {
  5. width: auto;
  6. border: 1px solid #f5f7fa;
  7. .el-radio-flex {
  8. display: flex;
  9. flex-direction: column;
  10. .el-radio {
  11. margin-top: 20px;
  12. }
  13. }
  14. .input-width-number,
  15. .el-select-number {
  16. width: 80px;
  17. }
  18. &__tabs {
  19. padding: 0;
  20. list-style: none;
  21. margin: 0;
  22. background-color: #f5f7fa;
  23. display: flex;
  24. .active {
  25. background-color: #5b8ff9;
  26. color: #ffffff;
  27. }
  28. }
  29. &__tab {
  30. padding: 10px;
  31. list-style: none;
  32. margin: 0;
  33. background-color: #f5f7fa;
  34. display: flex;
  35. flex: 1;
  36. align-items: center;
  37. justify-content: center;
  38. cursor: pointer;
  39. }
  40. &__content {
  41. padding: 20px;
  42. max-height: v-bind(maxHeight);
  43. overflow: hidden;
  44. overflow-y: auto;
  45. }
  46. &__express {
  47. margin-top: 16px;
  48. font-size: 15px;
  49. &__name {
  50. font-weight: bold;
  51. margin-right: 12px;
  52. }
  53. &__value {
  54. background-color: #61ddaa;
  55. padding: 5px;
  56. padding-left: 10px;
  57. padding-right: 10px;
  58. color: #ffffff;
  59. margin-right: 12px;
  60. letter-spacing: 3px;
  61. }
  62. }
  63. &__field {
  64. display: flex;
  65. margin-top: 12px;
  66. &__item {
  67. display: flex;
  68. white-space: nowrap;
  69. flex-direction: column;
  70. margin-right: 12px;
  71. width: 80px;
  72. >div {
  73. padding: 2px 20px;
  74. overflow-x: auto;
  75. overflow-y: hidden;
  76. text-align: center;
  77. }
  78. &__name {
  79. background: #409eff;
  80. color: #fff;
  81. }
  82. &__value {
  83. background: #eee;
  84. font-size: 18px;
  85. color: #409eff;
  86. text-align: center;
  87. height: 40px;
  88. line-height: 40px;
  89. }
  90. }
  91. }
  92. &__button {
  93. margin-top: 12px;
  94. text-align: center;
  95. width: 100%;
  96. }
  97. }
  98. }