index.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .editor-attribute{
  2. display:flex;
  3. flex-direction: column;
  4. justify-content: flex-start;
  5. align-items: flex-start;
  6. padding:10px;
  7. width:100%;
  8. height:740px;
  9. overflow: hidden;
  10. overflow-y: auto;
  11. .el-collapse{
  12. width:100%;
  13. }
  14. .el-collapse-item{
  15. border:1px solid #e5e5e5;
  16. width:100%;
  17. padding:10px;
  18. margin-top:10px;
  19. border-radius: 10px;
  20. }
  21. .el-collapse-item__header,.el-collapse-item__wrap{
  22. border:none!important;
  23. }
  24. .el-form{
  25. width:100%;
  26. .line{
  27. width:100%;
  28. }
  29. .attr-items{
  30. display:flex;
  31. flex-direction: column;
  32. .attr-item{
  33. height:50px;
  34. font-size:12px;
  35. display: flex;
  36. justify-content: flex-start;
  37. align-items: center;
  38. }
  39. }
  40. .el-form-item{
  41. margin-bottom:0px;
  42. .el-form-item__label{
  43. text-align:left;
  44. }
  45. .el-form-item__content{
  46. text-align:left;
  47. .input-item{
  48. width:100%;
  49. }
  50. .input-num{
  51. width:40%;
  52. margin-left:5px;
  53. }
  54. .btn-save{
  55. display:flex;
  56. justify-content:flex-end;
  57. align-items: center;
  58. width:100%;
  59. height:50px;
  60. }
  61. .header-list{
  62. border:1px solid #CCC;
  63. border-radius: 10px;
  64. height:100px;
  65. clear:both;
  66. display:flex;
  67. flex-direction: column;
  68. justify-content: flex-start;
  69. align-items: flex-start;
  70. overflow: hidden;
  71. overflow-y: auto;
  72. .item{
  73. padding-left:10px;
  74. width:100%;
  75. height:20px;
  76. line-height: 20px;
  77. color:#000;
  78. }
  79. .active-item{
  80. background:#f1f1f1;
  81. color:#cfcfcf!important;
  82. }
  83. }
  84. .opt{
  85. width:100%;
  86. height:50px;
  87. display:flex;
  88. flex-direction: row;
  89. justify-content: space-evenly;
  90. align-items: center;
  91. }
  92. }
  93. }
  94. }
  95. }